Skip to content

Commit

Permalink
Change the target directory
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmann committed May 28, 2015
1 parent 45bf57e commit 4085bd9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[run]
branch = True

[html]
directory = target/coverage-$ENVNAME
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
general:
artifacts:
- "tests/target"
- "target"

machine:
python:
Expand Down
5 changes: 0 additions & 5 deletions tests/.coveragerc

This file was deleted.

13 changes: 8 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ envlist = py27,py34

[testenv]
passenv=CI
changedir=tests
deps=pytest
mock
pytest-cov
commands=py.test -v --cov-report term --cov-report html --cov-report annotate --cov docker_scripts --basetemp={envtmpdir} --junit-xml target/report-{envname}.xml --junit-prefix {envname} {posargs}
setenv=
ENVNAME={envname}
deps=
pytest
pytest-cov
mock
commands=
py.test -v --cov-report term --cov-report html --cov-report annotate --cov docker_scripts --basetemp={envtmpdir} --junit-xml target/junit-{envname}.xml --junit-prefix {envname} {posargs}

0 comments on commit 4085bd9

Please sign in to comment.