From 943cd95f26758838715ce6cd725a58220ec81ab8 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Thu, 11 Jan 2024 17:39:46 +0200 Subject: Adding just idiotic no-op test to satisfy GHA workflow. --- .github/workflows/auto.yml | 4 ++-- .gitignore | 1 + tests/test_noop.py | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 tests/test_noop.py diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index b89766e..81b0ab0 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -34,5 +34,5 @@ jobs: run: poetry install # Run unittests - - name: Install poetry dependencies - run: poetry run pytest + - name: Run unittests + run: poetry run pytest -v diff --git a/.gitignore b/.gitignore index 41a73f7..b955cfc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *~ poetry.lock +__pycache__ diff --git a/tests/test_noop.py b/tests/test_noop.py new file mode 100644 index 0000000..61de3a2 --- /dev/null +++ b/tests/test_noop.py @@ -0,0 +1,2 @@ +def test_noop(): + pass -- cgit v1.2.3