From: Ben Darnell Date: Fri, 16 Dec 2022 19:26:01 +0000 (-0500) Subject: ci: Install pinned version of tox X-Git-Tag: v6.3.0b1~19^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfcb425fdc2c1e9b0cdbb3afe2bdca9327875633;p=thirdparty%2Ftornado.git ci: Install pinned version of tox --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ac51cee0..c372d32f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: # Lint python version must be synced with tox.ini python-version: '3.8' - name: Install tox - run: python -m pip install tox + run: python -m pip install tox -c maint/requirements.txt - name: Run test suite run: python -m tox -e py38,lint @@ -63,7 +63,7 @@ jobs: - name: Install apt packages run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev - name: Install tox - run: python -m pip install tox + run: python -m pip install tox -c maint/requirements.txt - name: Run test suite run: python -m tox -e ${{ matrix.tox_env }}