From 408d3864ae9ca490dfe8b865e524dbbc2b6f38a8 Mon Sep 17 00:00:00 2001 From: Roy Wiggins Date: Wed, 21 Aug 2024 20:51:34 +0000 Subject: [PATCH] fix tests --- .github/workflows/pythonapp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index c8bd003..bd436ec 100755 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -23,8 +23,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest pytest-asyncio - if [ -f requirements.txt ]; then pip install -r requirements.txt dev-requirements.txt; fi + pip install flake8 pytest pytest-asyncio pip-tools + if [ -f requirements.txt ]; then pip-sync requirements.txt dev-requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names