summary refs log tree commit diff
path: root/scripts-dev
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-03-01 19:47:02 +0000
committerGitHub <noreply@github.com>2022-03-01 19:47:02 +0000
commit5f62a094de10b4c4382908231128dace833a1195 (patch)
tree449c41f85a95f4a9adb7766c176f839407a308e6 /scripts-dev
parentUse importlib.metadata to read requirements (#12088) (diff)
downloadsynapse-5f62a094de10b4c4382908231128dace833a1195.tar.xz
Detox, part 1 of N (#12119)
* Don't use `tox` for `check-sampleconfig`
* Don't use `tox` for check-newsfragment
Diffstat (limited to 'scripts-dev')
-rwxr-xr-xscripts-dev/check-newsfragment2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/check-newsfragment b/scripts-dev/check-newsfragment
index c764011d6a..493558ad65 100755
--- a/scripts-dev/check-newsfragment
+++ b/scripts-dev/check-newsfragment
@@ -35,7 +35,7 @@ CONTRIBUTING_GUIDE_TEXT="!! Please see the contributing guide for help writing y
 https://github.com/matrix-org/synapse/blob/develop/CONTRIBUTING.md#changelog"
 
 # If check-newsfragment returns a non-zero exit code, print the contributing guide and exit
-tox -qe check-newsfragment || (echo -e "$CONTRIBUTING_GUIDE_TEXT" >&2 && exit 1)
+python -m towncrier.check --compare-with=origin/develop || (echo -e "$CONTRIBUTING_GUIDE_TEXT" >&2 && exit 1)
 
 echo
 echo "--------------------------"