Skip to content
Snippets Groups Projects
Commit 8ab4c8fb authored by Isaak Lim's avatar Isaak Lim
Browse files

fix windows CI for loops

parent 44311501
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -97,7 +97,7 @@ test-3.6-VS2017:
- virtualenv --clear -p "C:\Program Files\Python36\python.exe" .
- call .\Scripts\activate
- cd dist3
- FOR %wheel in (*.whl) DO pip install %wheel
- FOR %%a IN (*.whl) DO pip install %%a
- cd ..\tests
- python -m unittest discover
......@@ -169,7 +169,7 @@ deploy-3.6-VS2017:
script:
- mkdir release
- cd dist3
- FOR %wheel in (*.whl) DO copy %wheel ..\release
- FOR %%a IN (*.whl) DO cp %%a ..\release
artifacts:
paths:
- release/*.whl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment