-
-
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
a7ebe79
commit bb2f43d
Showing
5 changed files
with
43 additions
and
17 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 |
---|---|---|
|
@@ -102,6 +102,3 @@ ENV/ | |
|
||
# IDE Stuff | ||
.idea | ||
|
||
# Test Auth Config | ||
tests/config.ini |
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,39 @@ | ||
language: python | ||
cache: pip | ||
|
||
python: | ||
- '2.7' | ||
- '3.5' | ||
- '3.6' | ||
- '3.7' | ||
|
||
services: | ||
- mongodb | ||
|
||
matrix: | ||
fast_finish: true | ||
include: | ||
- python: 3.7 | ||
dist: xenial | ||
|
||
env: | ||
global: | ||
- FOO=1 | ||
|
||
install: | ||
- pip install -r requirements.txt --use-mirrors | ||
- pip install coveralls | ||
|
||
before_script: | ||
- sleep 15 | ||
- mongo mydb_test --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]});' | ||
|
||
script: | ||
#- python setup.py build_tests || python setup.py egg_info; python selftest.py | ||
- nosetests -v --with-coverage | ||
|
||
after_success: | ||
- if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then coveralls; fi | ||
|
||
before_deploy: | ||
- pip install twine |
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 +1 @@ | ||
pymongo==3.6.1 | ||
pymongo>=3.6.1 |
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.