We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d45cceb commit eaecc06Copy full SHA for eaecc06
appveyor.yml
@@ -24,5 +24,16 @@ install:
24
25
build: false
26
27
+# The following prevents Travis from running CI on pull requests that come from a
28
+# branch in the same repository. Without this, it will run the same CI for the
29
+# pull request branch _and_ the pull request itself, which makes no sense.
30
+branches:
31
+ only:
32
+ - master
33
+ # We want to build wip/* branches since these are not usually used for PRs
34
+ - /^wip\/.*$/
35
+ # We want to build version tags as well.
36
+ - /^v\d+\.\d+.*$/
37
+
38
test_script:
39
- "tox -e %TOX_PY%"
0 commit comments