We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d45586f commit d8dc95dCopy full SHA for d8dc95d
.travis.yml
@@ -0,0 +1,13 @@
1
+language: python
2
+python:
3
+ - 3.5
4
+ - 3.6
5
+install:
6
+ - pip install -r requirements.txt
7
+ - pip install coverage
8
+ - pip install codecov
9
+script:
10
+ - coverage run --source='api' manage.py test --settings=api.config.test_settings
11
+ - coverage report -m --omit="*/test*"
12
+after_success:
13
+ - codecov
api/config/test_settings.py
@@ -9,8 +9,6 @@
if 'test' in sys.argv or 'test_coverage' in sys.argv:
- # non production key
-
14
15
# use an in memory sqlite3 backend for performance
16
DATABASES = {
0 commit comments