From 63ad09ec6f6633adc87009aeeec9ed4cde56268a Mon Sep 17 00:00:00 2001 From: William Galvin <90012279+william-galvin@users.noreply.github.com> Date: Mon, 25 Dec 2023 08:56:33 +0100 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 7f453c0..5daa3c8 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -27,7 +27,8 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + if [ -f vcvqe/requirements.txt ]; then pip install -r vcvqe/requirements.txt; fi + if [ -f pennylane/requirements.txt ]; then pip install -r pennylane/requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names