-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
159 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
build: false | ||
|
||
environment: | ||
PYTHON: "C:\\Python27" | ||
TOXENV: "py27" | ||
matrix: | ||
- PYTHON: "C:\\Python27" | ||
PYTHON_VERSION: "2.7" | ||
TOXENV: "py27" | ||
- PYTHON: "C:\\Python36" | ||
PYTHON_VERSION: "3.6" | ||
TOXENV: "py36" | ||
|
||
init: | ||
- ECHO %PYTHON% | ||
- ECHO %TOXENV% | ||
- SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH% | ||
- ECHO %PYTHON% | ||
- ECHO %TOXENV% | ||
- SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH% | ||
|
||
install: | ||
- python -m pip install --upgrade pip | ||
# Latest tox 2.3.x is currently busted: | ||
# https://bitbucket.org/hpk42/tox/issues/314/tox-command-busted-on-windows | ||
- pip install tox==2.2.0 | ||
|
||
- python -m pip install --upgrade pip | ||
- pip install tox==3.7.0 | ||
|
||
test_script: | ||
- tox | ||
- tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.idea/ | ||
.cache/ | ||
.tox/ | ||
*.egg-info | ||
*.pyc | ||
.coverage | ||
build | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
set -x | ||
|
||
ci_requirements="tox virtualenv" | ||
|
||
if [ "$TRAVIS_OS_NAME" == "osx" ]; then | ||
curl -O https://bootstrap.pypa.io/get-pip.py | ||
python get-pip.py --user | ||
fi | ||
|
||
pip install $ci_requirements |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
mozinfo >= 0.9 | ||
mozinfo >= 1.0.0 | ||
packaging >= 19.0 | ||
progressbar2 >= 3.34.3 | ||
redo==2.0.3 | ||
requests >= 2.9.1, <3.0.0 | ||
treeherder-client==5.0.0 | ||
requests >= 2.21.0, <3.0.0 | ||
treeherder-client >= 5.0.0, <6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.