From 8cd28a3a36bae2daacbc3333b19fdbb344a39177 Mon Sep 17 00:00:00 2001 From: Sergey Astanin Date: Thu, 26 Sep 2024 16:36:58 +0200 Subject: [PATCH] rewrite GitHub Action using pytest --- .github/workflows/github-actions-tox.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-tox.yml b/.github/workflows/github-actions-tox.yml index e39e44f..9adabb7 100644 --- a/.github/workflows/github-actions-tox.yml +++ b/.github/workflows/github-actions-tox.yml @@ -21,6 +21,6 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install pytest numpy pandas - python -m pip install tox tox-gh - - name: Test with tox - run: tox + - name: Run tests + run: | + pytest -v --doctest-modules --ignore benchmark.py