From ec896b5d617655d47aaf58100e8d4d45920c1874 Mon Sep 17 00:00:00 2001 From: Sean Reed Date: Thu, 2 Feb 2023 17:44:21 +0100 Subject: [PATCH] Updated command to run pytest pytest is the recommended way to run pytest since version 3.0, the old command of py.test may be deprecated in the future. See here: https://github.com/pytest-dev/pytest/issues/1629 --- .github/workflows/django.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index d1d6c4e5..e73046de 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -59,7 +59,7 @@ jobs: - name: Type check run: mypy --config mypy.ini styleguide_example/ - name: Run tests - run: py.test + run: pytest deploy_to_heroku: runs-on: ubuntu-latest