forked from pricingassistant/mrq
-
Notifications
You must be signed in to change notification settings - Fork 0
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 pricingassistant#124 from pricingassistant/travis
Switch to Travis & Add Python 3 to the Dockerfile
- Loading branch information
Showing
6 changed files
with
63 additions
and
46 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
sudo: required | ||
|
||
services: | ||
- docker | ||
|
||
env: | ||
- PYTHON_BIN=python | ||
- PYTHON_BIN=python3 | ||
|
||
before_install: | ||
- docker ps | ||
- docker info | ||
- docker version | ||
- make docker | ||
- make linterrors | ||
|
||
# TODO: coveralls? | ||
script: | ||
- docker run -i -t -v `pwd`:/app:rw -w /app mrq_local $PYTHON_BIN -m pytest tests/ -v --junitxml=pytest-report.xml --cov mrq --cov-report term | ||
|
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 was deleted.
Oops, something went wrong.
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,16 +1,13 @@ | ||
pytest==2.7.0 | ||
pylint==1.5.2 | ||
pytest-cov==1.8.1 | ||
pytest-html==1.0 | ||
pytest-httpbin==0.0.6 | ||
pytest-circleci==0.0.2 | ||
pytest-instafail==0.3.0 | ||
|
||
subprocess32==3.2.5 | ||
#git+https://github.com/srlindsay/gevent-profiler@master#egg=gevent-profiler==0.2 | ||
# git+https://github.com/srlindsay/gevent-profiler@master#egg=gevent-profiler==0.2 | ||
|
||
# Used to test IO tracing | ||
requests==2.4.3 | ||
|
||
mkdocs==0.11.1 | ||
mistune==0.5 | ||
mkdocs==0.15.3 | ||
mistune==0.7.3 |