Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add py3 tests to tox with folders that work #3145

Merged
merged 2 commits into from
Apr 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = packaging, py27, pep8
envlist = packaging, py27, py36, pep8

[testenv]
deps =
Expand Down Expand Up @@ -46,6 +46,14 @@ commands =
# )
usedevelop=true

[testenv:py36]
usedevelop=true
commands =
/usr/bin/find "{toxinidir}" -name '*.pyc' -delete
coverage run {env:COVERAGE_OPTS:} --source="{toxinidir}/synapse" \
"{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests/metrics} {env:TOXSUFFIX:}
{env:DUMP_COVERAGE_COMMAND:coverage report -m}

[testenv:packaging]
deps =
check-manifest
Expand Down