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 a784a63 commit 00cc795Copy full SHA for 00cc795
.gitignore
@@ -5,6 +5,7 @@ venv/
5
6
htmlcov/
7
.coverage
8
+coverage.xml
9
10
*.pyc
11
*.log
.travis.yml
@@ -4,11 +4,13 @@ language: python
4
cache: pip
install:
- pip install -r requirements.txt
- - pip install pytest pytest-cov requests coveralls
+ - pip install pytest pytest-cov requests coveralls codacy-coverage
script:
- pytest --cov-config .coveragerc --cov=json_to_models -m "not no_expected" test/
after_success:
+ - coverage xml
12
- coveralls
13
+ - python-codacy-coverage -r coverage.xml
14
matrix:
15
include:
16
- python: 3.7
0 commit comments