This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
gergely
/
flask-logging-extras
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add tox configuration
blueprint-logging
Gergely Polonkai
4 years ago
parent
4105934142
commit
e8af7e15a6
2 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
.gitignore
+8
-0
tox.ini
+ 3
- 0
.gitignore
View File
@ -3,3 +3,6 @@
__pycache__/
*.pyc
/Flask_Logging_Extras.egg-info/
/.tox/
.coverage
/htmlcov/
+ 8
- 0
tox.ini
View File
@ -0,0 +1,8 @@
[tox]
envlist
=
py27, py33, py34, py35, py36
[testenv]
commands
=
coverage run --source flask_logging_extras/ -m unittest discover --start-directory tests
coverage report -m
deps
=
coverage
Write
Preview
Loading…
Cancel
Save