We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 127ad5a commit a9c1f3eCopy full SHA for a9c1f3e
.travis.yml
@@ -5,13 +5,14 @@ python:
5
- 3.4
6
- 3.5
7
- 3.6
8
+ - 3.7
9
10
install:
11
pip install -r requirements/requirements-app.txt -r requirements/requirements-tests.txt
12
13
script:
- - python -m unittest rest_framework/tests/__init__.py # run tests
14
- - coverage run -m unittest rest_framework/tests/__init__.py # run coverage tests
+ - python -m unittest tests/__init__.py # run tests
15
+ - coverage run -m unittest tests/__init__.py # run coverage tests
16
17
after_success:
18
- codecov # report to coverage.
rest_framework/__init__.py
@@ -8,7 +8,7 @@
__/ |
|___/
"""
-VERSION = (0, 3, 2)
+VERSION = (0, 3, 0)
__title__ = 'Python-Rest-Framework'
__author__ = 'Deys Timofey'
0 commit comments