From 16203d207f0bf433d4e6418073b5fb7075d7e32d Mon Sep 17 00:00:00 2001 From: Simon Norris Date: Thu, 15 Aug 2024 11:59:37 -0700 Subject: [PATCH] update test download workflow --- .github/workflows/test-download.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-download.yaml b/.github/workflows/test-download.yaml index 869a99a..8f9792b 100644 --- a/.github/workflows/test-download.yaml +++ b/.github/workflows/test-download.yaml @@ -47,10 +47,10 @@ jobs: - uses: actions/checkout@v4 - name: Install test dependencies run: | - /venv/bin/python -m pip install -r requirements-dev.txt + python -m pip install -r requirements-dev.txt - name: Run tests run: | - /venv/bin/python -m pytest -v -rxXs + python -m pytest -v -rxXs - name: Validate sources.json run: | - /venv/bin/python download.py sources.json -t -v \ No newline at end of file + python download.py sources.json --dry_run -v \ No newline at end of file