Skip to content

Commit

Permalink
馃悰 remove -it as per travis, still works locally
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmedmar committed Jan 31, 2019
1 parent e2ea50a commit b0cff49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/test-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ find . -name '__pycache__' -exec rm -rf {} +

# run tox inside the container
docker run --rm $TEST_IMAGE --version
docker run --rm -it --entrypoint "" -v `pwd`:/test -w /test \
docker run --rm --entrypoint "" -v `pwd`:/test -w /test \
$TEST_IMAGE bash -c "cp -r /test /{{cookiecutter.project_slug}} && cd /{{cookiecutter.project_slug}} && pip install tox && tox && cp .coverage /test"

# move container coverage paths to local, see .coveragerc [paths] and this comment:
Expand Down

1 comment on commit b0cff49

@jsmedmar
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.