From 9de4e50f81eb91b28275377e143ecc5351859f51 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 28 Apr 2020 17:45:36 +0200 Subject: [PATCH] run unittests from the test folder --- .github/workflows/{pythonapp.yml => unittests.yml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{pythonapp.yml => unittests.yml} (96%) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/unittests.yml similarity index 96% rename from .github/workflows/pythonapp.yml rename to .github/workflows/unittests.yml index 900e4429..a05854da 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/unittests.yml @@ -1,7 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions -name: Python application +name: unittests on: push: @@ -33,4 +33,4 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - pytest + pytest test