From abc86db155336fd3b533d51248456b71bfdc8ea9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 25 Jan 2024 09:36:29 -0500 Subject: [PATCH] Update pytest workflow to use make test --- .github/workflows/pytest.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 2fff7fb..41146b7 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,5 +17,7 @@ jobs: with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" + - name: Run the tests with pytest + run: make test + env: + NEON_API_KEY: ${{ secrets.NEON_API_KEY }}