forked from Supervisor/supervisor
-
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.
- Loading branch information
1 parent
b0f0a56
commit 329333a
Showing
2 changed files
with
16 additions
and
0 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,13 @@ | ||
# Configuration for Travis CI | ||
|
||
language: python | ||
python: | ||
- "2.5" | ||
- "2.6" | ||
- "2.7" | ||
# command to install dependencies | ||
install: | ||
- pip install -r test_requirements.txt --use-mirrors | ||
# command to run tests | ||
script: | ||
- python setup.py test -q |
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,3 @@ | ||
# Requirements used for testing | ||
mock >= 0.5.0 | ||
meld3 >= 0.6.5 |