-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from jmchilton/pr229
Merge dev and add tighter env abstraction.
- Loading branch information
Showing
81 changed files
with
1,656 additions
and
929 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
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,9 +1,15 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "2.6" | ||
python: 2.7 | ||
env: | ||
- TOX_ENV=py27-lint | ||
- TOX_ENV=py26-lint | ||
- TOX_ENV=py27-unit | ||
- TOX_ENV=py26-unit | ||
- TOX_ENV=qunit | ||
|
||
install: | ||
- virtualenv .venv | ||
- . .venv/bin/activate | ||
- pip install flake8 | ||
script: ./.ci/flake8_wrapper.sh && ./run_tests.sh -u | ||
- pip install tox | ||
- if [ "$TOX_ENV" == "qunit" ]; then bash -c 'cd test/qunit && npm install'; fi | ||
|
||
script: tox -e $TOX_ENV | ||
|
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.