Skip to content

Commit

Permalink
Correct command calls
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Apr 28, 2020
1 parent 96b324e commit fc50bc0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,37 +24,37 @@ jobs:
# Tests build on 3.7-dev
- name: "3.7-dev Build Test"
python: 3.7-dev
env: COMMAND="./build.py"
env: COMMAND="python3 ./build.py"

# Tests build on 3.8
- name: "3.8 Build Test"
python: 3.8
env: COMMAND="./build.py"
env: COMMAND="python3 ./build.py"

# Tests build on 3.8-dev
- name: "3.8-dev Build Test"
python: 3.8-dev
env: COMMAND="./build.py"
env: COMMAND="python3 ./build.py"

# Tests build with Fail on Warning
- name: "3.8 Fail on Warning"
python: 3.8
env:
- COMMAND="./build.py -f"
- COMMAND="python3 ./build.py -f"
- FAIL_ALLOWED=true

# Tests build with Fail on Warning (Nitpicky)
- name: "3.8 Fail on Warning Nitpicky"
python: 3.8
env:
- COMMAND="./build.py -f -n"
- COMMAND="python3 ./build.py -f -n"
- FAIL_ALLOWED=true

# Checks link references within PEPs
- name: "3.8 Check Links"
python: 3.8
env:
- COMMAND="./build.py -c"
- COMMAND="python3 ./build.py -c"
- FAIL_ALLOWED=true

allow_failures:
Expand Down

0 comments on commit fc50bc0

Please sign in to comment.