From adcfba1808fd7144b8c2ec4cd46535b0241251fa Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Thu, 3 Oct 2024 20:46:28 +0200 Subject: [PATCH] feat: run pytest for PRs --- .github/workflows/pytest.yml | 29 +++++++++++++++++++++++++++++ requirements.txt | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 .github/workflows/pytest.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..8100b2c --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,29 @@ +name: Run Pytest on Pull Request + +on: + pull_request: + branches: + - main # Change this to your default branch if it's not 'main' + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + + - name: Install dependencies + run: | + sudo apt install -y libmariadb3 libmariadb-dev + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run Pytest + run: | + python -m pytest -vs --cov modules --cov-report term-missing tests/ diff --git a/requirements.txt b/requirements.txt index a024680..025d4a0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,5 @@ scikit-learn==1.5.2 deap==1.4.1 joblib==1.4.2 requests==2.32.3 +pytest==8.3.3 +pytest-cov==5.0.0