Make end-to-end test clean up after itself, and drop unnecessary use of Docker for it.
All checks were successful
the build was successful

This commit is contained in:
Dan Helfman 2018-10-03 22:36:25 -07:00
commit 3ce5533103
4 changed files with 40 additions and 30 deletions

View file

@ -17,12 +17,9 @@ commands =
black --skip-string-normalization --line-length 100 .
[testenv:end-to-end]
whitelist_externals = docker
skip_install = true
deps =
deps = -rtest_requirements.txt
commands =
docker build --file tests/end-to-end/Dockerfile --tag borgmatic-test .
docker run --rm borgmatic-test py.test tests/end-to-end []
py.test tests/end-to-end []
[flake8]
ignore = E501,W503