]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
ci: Install pinned version of tox
authorBen Darnell <ben@bendarnell.com>
Fri, 16 Dec 2022 19:26:01 +0000 (14:26 -0500)
committerBen Darnell <ben@bendarnell.com>
Fri, 16 Dec 2022 20:19:58 +0000 (15:19 -0500)
.github/workflows/test.yml

index 7ac51cee07474cd7de9eaaaf699cac32e7b46bf0..c372d32f2afbfae21a83709bdf4d85b568180123 100644 (file)
@@ -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 }}