This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* test: separate test-requirements.txt -> base-test-requirements.txt (retain history) * test: add pypy-test-requirements.txt to avoid wsaccel fixes #560 * test: test pypy on travis (unfortunately only pypy-5.4.1) also some cleanup of the travis env, split flake8 into its own matrix so its ran concurrently and enable pip caching
- Loading branch information
Showing
6 changed files
with
35 additions
and
25 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,18 +1,21 @@ | ||
language: python | ||
cache: pip | ||
sudo: required | ||
dist: precise | ||
python: | ||
- '2.7' | ||
|
||
matrix: | ||
include: | ||
- python: 2.7 | ||
env: TOXENV=py27 DDB=true CODECOV=true | ||
- python: pypy-5.4.1 | ||
env: TOXENV=pypy DDB=true CODECOV=true | ||
- env: TOXENV=flake8 | ||
|
||
install: | ||
- pip install virtualenv | ||
- virtualenv pypy | ||
- cd pypy/bin && ln -s python pypy && cd ../.. | ||
- source pypy/bin/activate | ||
- python --version | ||
- make travis | ||
- make ${DDB:+ddb} travis | ||
script: tox -- --with-coverage --cover-xml --cover-package=autopush | ||
after_success: | ||
- codecov | ||
- ${CODECOV:+codecov} | ||
notifications: | ||
slack: | ||
secure: LE+1Nelh5PLrb35LU6yJI1EV2LDVm4V90Tb+5LhUpeGrcfqr47HhMLMGXbBSnnjYPRLCiT75xog+oMN5eAF4VnZle4qza6Ue7G+YwRtGo/V0ud0i2zSUT557yXcr2QCYAzTKJVgetnxQNYvru/l1trdNZsRbsPUm1vexAjaX5yo= |
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,11 @@ | ||
nose | ||
coverage | ||
mock>=1.0.1 | ||
funcsigs==1.0.2 | ||
pbr==1.10.0 | ||
-e git+https://github.com/habnabit/txstatsd.git@master#egg=txStatsD | ||
-e git+https://github.com/bbangert/moto.git@3bdb75a961148ea5aa526f0e88d9e7835a30df3a#egg=moto | ||
flake8==3.2.0 | ||
psutil | ||
websocket-client | ||
Pympler==0.4.3 |
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,2 @@ | ||
-r pypy-requirements.txt | ||
-r base-test-requirements.txt |
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,12 +1,2 @@ | ||
-r requirements.txt | ||
nose | ||
coverage | ||
mock>=1.0.1 | ||
funcsigs==1.0.2 | ||
pbr==1.10.0 | ||
-e git+https://github.com/habnabit/txstatsd.git@master#egg=txStatsD | ||
-e git+https://github.com/bbangert/moto.git@3bdb75a961148ea5aa526f0e88d9e7835a30df3a#egg=moto | ||
flake8==3.2.0 | ||
psutil | ||
websocket-client | ||
Pympler==0.4.3 | ||
-r base-test-requirements.txt |
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