-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore AppVeyor CI for Windows tests
- Loading branch information
1 parent
2096588
commit b5415e5
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
image: Visual Studio 2019 | ||
|
||
environment: | ||
global: | ||
RANDOM_SEED: 0 | ||
matrix: | ||
- PYTHON_MAJOR: 3 | ||
PYTHON_MINOR: 8 | ||
|
||
cache: | ||
- .venv -> poetry.lock | ||
|
||
init: | ||
- git config --global core.symlinks true | ||
|
||
install: | ||
# Add Make and Python to the PATH | ||
- copy C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe | ||
- set PATH=%PATH%;C:\MinGW\bin | ||
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH% | ||
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH% | ||
# Install system dependencies | ||
- curl -sSL https://install.python-poetry.org | python - | ||
- set PATH=%USERPROFILE%\AppData\Roaming\Python\Scripts;%PATH% | ||
- make doctor | ||
# Install project dependencies | ||
- make install | ||
|
||
build: off | ||
|
||
test_script: | ||
- make check | ||
- make test | ||
- make demo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters