diff options
author | David Robertson <davidr@element.io> | 2022-03-04 12:01:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 12:01:51 +0000 |
commit | 36071d39f784ddc2271c91a72a55d9ee4f8689bb (patch) | |
tree | 82fe291e842f32993711f8f023605c03232b4d6f | |
parent | Move synctl into `synapse._scripts` and expose as an entrypoint (#12140) (diff) | |
download | synapse-36071d39f784ddc2271c91a72a55d9ee4f8689bb.tar.xz |
Changelog (#12153)
-rw-r--r-- | .github/workflows/tests.yml | 1 | ||||
-rw-r--r-- | changelog.d/12153.misc | 1 | ||||
-rw-r--r-- | tox.ini | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c89c50cd07..3bce95b0e0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,6 +17,7 @@ jobs: - uses: actions/setup-python@v2 - run: pip install -e . - run: scripts-dev/generate_sample_config.sh --check + - run: scripts-dev/config-lint.sh lint: runs-on: ubuntu-latest diff --git a/changelog.d/12153.misc b/changelog.d/12153.misc new file mode 100644 index 0000000000..f02d140f38 --- /dev/null +++ b/changelog.d/12153.misc @@ -0,0 +1 @@ +Move CI checks out of tox, to facilitate a move to using poetry. \ No newline at end of file diff --git a/tox.ini b/tox.ini index f1f96b27ea..3ffd2c3e97 100644 --- a/tox.ini +++ b/tox.ini @@ -151,7 +151,6 @@ extras = lint commands = python -m black --check --diff {[base]lint_targets} flake8 {[base]lint_targets} {env:PEP8SUFFIX:} - {toxinidir}/scripts-dev/config-lint.sh [testenv:check_isort] extras = lint |