diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-10-03 00:59:11 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 00:59:11 +1000 |
commit | 058a4c665e55a8654d253bf9cafaf814b465fbd9 (patch) | |
tree | 9f6c1c80a54b1ada1939675606cacbb135a92805 /jenkins-flake8.sh | |
parent | Merge pull request #3960 from matrix-org/rav/fix_missing_create_event_error (diff) | |
download | synapse-058a4c665e55a8654d253bf9cafaf814b465fbd9.tar.xz |
Remove Jenkins & other old dev junk (#3988)
Diffstat (limited to 'jenkins-flake8.sh')
-rwxr-xr-x | jenkins-flake8.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/jenkins-flake8.sh b/jenkins-flake8.sh deleted file mode 100755 index 11f1cab6c8..0000000000 --- a/jenkins-flake8.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -set -eux - -: ${WORKSPACE:="$(pwd)"} - -export PYTHONDONTWRITEBYTECODE=yep -export SYNAPSE_CACHE_FACTOR=1 - -# Output test results as junit xml -export TRIAL_FLAGS="--reporter=subunit" -export TOXSUFFIX="| subunit-1to2 | subunit2junitxml --no-passthrough --output-to=results.xml" -# Write coverage reports to a separate file for each process -export COVERAGE_OPTS="-p" -export DUMP_COVERAGE_COMMAND="coverage help" - -# Output flake8 violations to violations.flake8.log -export PEP8SUFFIX="--output-file=violations.flake8.log" - -rm .coverage* || echo "No coverage files to remove" - -tox -e packaging -e pep8 |