Skip to content

Commit

Permalink
ci: disabled integration test on Windows, fix to appveyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Oct 4, 2020
1 parent 94727f2 commit af7715c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ after_test:
#- "%CMD_IN_ENV% python setup.py bdist_wininst"
#- "%CMD_IN_ENV% python setup.py bdist_msi"
#- ps: "ls dist"
- "%CMD_IN_ENV% poetry install" # reinstall PyInstaller, because somehow its altgraph dependency gets uninstalled by poetry when installing previous packages
- "%CMD_IN_ENV% make package"

artifacts:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ jobs:
run: |
source venv/bin/activate || source venv/Scripts/activate
make test
# Don't run integration tests on Windows, doesn't work for some reason
- name: Run integration tests
if: "!startsWith(runner.os, 'windows')"
run: |
source venv/bin/activate || source venv/Scripts/activate
make test-integration
- name: Package
shell: bash
Expand Down

0 comments on commit af7715c

Please sign in to comment.