Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gsfr committed Jan 30, 2018
1 parent 4222879 commit 384c727
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ See [py.test usage](https://docs.pytest.org/en/latest/usage.html) for more.
### Example
The most common use case is adding a new (still failing) test, and wanting to
* (re-)run it as fast as possible (`-B` and `-k foo`)
* see output from quick and dirty `print`s in the test (`-vvv`)
* see output from quick and dirty `print` statements in the test (`-vvv`)
* get into an interactive pdb session to inspect what went wrong (`--pdb`)

```
Expand Down
5 changes: 2 additions & 3 deletions tests/bin/docker-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,8 @@ clean_up() {
docker cp core-test-runner:/src/core/.coverage .coverage.unit-tests 2>/dev/null

# Save integration test coverage
docker stop core-test-service
docker wait core-test-service
docker cp core-test-service:/tmp/.coverage.integration-tests ./
docker wait $(docker stop core-test-service)
docker cp core-test-service:/tmp/.coverage.integration-tests .

# Combine unit/integ coverage and report/grenerate html
docker run --rm \
Expand Down

0 comments on commit 384c727

Please sign in to comment.