1 | language: python |
2 | python: |
3 | - "3.4" |
4 | - "3.5" |
5 | - "3.6" |
6 | - "3.7" |
7 | - "3.7-dev" |
8 | - "3.8-dev" |
9 | - "nightly" |
10 | matrix: |
11 | include: |
12 | - name: "Python 3.7.4 on macOS" |
13 | os: osx |
14 | osx-image: xcode11 |
15 | language: shell |
16 | - name: "Python 3.7.4 on Windows" |
17 | os: windows |
18 | language: shell |
19 | before_install: |
20 | - choco install python |
21 | - python -m pip install --upgrade pip |
22 | env: PATH=/c/Python37:/c/Python37/Scripts:$PATH |
23 | install: pip3 install --upgrade pip |
24 | script: python3 tests/unit_parserargs.py || python tests/unit_parserargs.py |
25 |
|