Skip to content

Instantly share code, notes, and snippets.

@jacobwyke
Created November 6, 2017 17:39
Show Gist options
  • Save jacobwyke/4c3176cc937362f0ce0e376b2d9a1b9f to your computer and use it in GitHub Desktop.
Save jacobwyke/4c3176cc937362f0ce0e376b2d9a1b9f to your computer and use it in GitHub Desktop.
Ant build commands to breakdown tox tests into different components
<exec dir="${basedir}/src/" executable="/usr/bin/tox" failonerror="true">
<arg line="-e py35 -- tests/unit --cov=./ --cov-report=xml --junitxml=junit-unit.xml --cov-append"/>
</exec>
<exec dir="${basedir}/src/" executable="/usr/bin/tox" failonerror="true">
<arg line="-e py35 -- tests/functional --cov=./ --cov-report=xml --junitxml=junit-unit.xml --cov-append"/>
</exec>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment