forked from openlp/openlp
AppVeyor: Don't run tests on tags
This commit is contained in:
parent
a03f208acc
commit
d09c77f0a6
13
appveyor.yml
13
appveyor.yml
@ -41,11 +41,14 @@ install:
|
|||||||
build: off
|
build: off
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- ps: cd $env:APPVEYOR_BUILD_FOLDER
|
- ps: >-
|
||||||
# Run the tests
|
If (($env:APPVEYOR_REPO_TAG -eq $False)) {
|
||||||
- python -m pytest tests
|
cd $env:APPVEYOR_BUILD_FOLDER
|
||||||
# Go back to the user root folder
|
# Run the tests
|
||||||
- cd ..
|
python -m pytest tests
|
||||||
|
# Go back to the user root folder
|
||||||
|
cd ..
|
||||||
|
}
|
||||||
|
|
||||||
after_test:
|
after_test:
|
||||||
# Only package on the master repo
|
# Only package on the master repo
|
||||||
|
Loading…
Reference in New Issue
Block a user