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 f43c1c3 commit 474e07fCopy full SHA for 474e07f
.gitignore
@@ -4,3 +4,4 @@ _build
4
*.egg-info
5
dist
6
build
7
+.eggs
.travis.yml
@@ -8,4 +8,4 @@ python:
8
- "3.6"
9
- "pypy"
10
install: "pip install -r dev-requirements.txt"
11
-script: python -m pytest
+script: python setup.py test
setup.cfg
@@ -0,0 +1,2 @@
1
+[aliases]
2
+test=pytest
setup.py
@@ -20,6 +20,12 @@
20
install_requires=[
21
'six>=1.10.0',
22
],
23
+ setup_requires=[
24
+ 'pytest-runner',
25
+ ],
26
+ tests_require=[
27
+ 'pytest',
28
29
classifiers=[
30
'Environment :: Web Environment',
31
'Framework :: Django',
0 commit comments