Skip to content

Commit

Permalink
Issue251 (#252)
Browse files Browse the repository at this point in the history
* [qacode] fix for issue #251

+CHANGELOG for #251
  • Loading branch information
netzulo committed Mar 31, 2019
1 parent 022351c commit 4e9bdad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added

### Changed
- separate benchmark test from all functional tests at tox -e coverage #251

### Fixed

Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,34,35,36},flake8,docs
envlist = py{27,34,35,36},flake8,coverage,docs,benchmark
[testenv:py27]
commands = python setup.py test
[testenv:py34]
Expand Down Expand Up @@ -33,7 +33,7 @@ exclude =

[testenv:benchmark]
description = Environment to generate benchmark image reports
py.test --benchmark-histogram=tests/reports/benchmarks/benchmark.svg
py.test test/002_benchmarks --benchmark-histogram=tests/reports/benchmarks/benchmark.svg
deps =
pytest
pytest-dependency
Expand All @@ -43,7 +43,7 @@ deps =
[testenv:coverage]
description = Environment to generate coverage reports
commands =
py.test --cov=qacode tests/ --cov-report html:tests/reports/coverage/ --cov-report xml:tests/reports/coverage.xml --cov-report term
py.test --deselect="tests/002_benchmarks" --cov=qacode tests/ --cov-report html:tests/reports/coverage/ --cov-report xml:tests/reports/coverage.xml --cov-report term
deps =
pytest
pytest-html
Expand Down

0 comments on commit 4e9bdad

Please sign in to comment.