Skip to content
Snippets Groups Projects
Unverified Commit df22de38 authored by Joris Vaillant's avatar Joris Vaillant
Browse files

ci: Don't install coal before running tests on Windows

ci: Don't install coal before running tests on Windows
parent 2beb3f15
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ jobs: ...@@ -65,7 +65,7 @@ jobs:
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Build and Install :: Build and Install
cmake --build . --config Release --target install cmake --build . --config Release --target all
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Testing :: Testing
...@@ -73,8 +73,7 @@ jobs: ...@@ -73,8 +73,7 @@ jobs:
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Test Python import :: Test Python import
cd .. cmake -E env PYTHONPATH=%cd%\python python -c "import coal"
python -c "import coal"
if errorlevel 1 exit 1 if errorlevel 1 exit 1
check: check:
......
...@@ -62,7 +62,7 @@ jobs: ...@@ -62,7 +62,7 @@ jobs:
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Build and Install :: Build and Install
cmake --build . --config Release --target install cmake --build . --config Release --target all
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Testing :: Testing
...@@ -70,8 +70,7 @@ jobs: ...@@ -70,8 +70,7 @@ jobs:
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Test Python import :: Test Python import
cd .. cmake -E env PYTHONPATH=%cd%\python python -c "import coal"
python -c "import coal"
if errorlevel 1 exit 1 if errorlevel 1 exit 1
check: check:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment