Skip to content

Commit

Permalink
Github workflow for unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ifeoluwaale committed Dec 25, 2023
1 parent 17166ab commit 829f565
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Python package

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"] # Goal is to run tests for different python versions

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ${{ matrix.python-version }}-requirements.txt
pip install pytest pytest-cov
- name: Run unit tests
run: |
pytest tests/unit --cov=dplpy
#- name: Run integ tests
# run: |
# pytest tests/integs -rA
6 changes: 6 additions & 0 deletions 3.10-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
numpy==1.22.4
statsmodels==0.13.5
matplotlib==3.8.0
csaps==1.1.0
pandas==2.0.0
scipy==1.11.3
6 changes: 6 additions & 0 deletions 3.11-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
numpy==1.23.2
statsmodels==0.13.5
matplotlib==3.8.0
csaps==1.1.0
pandas==2.0.0
scipy==1.11.3
6 changes: 6 additions & 0 deletions 3.12-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
numpy==1.26.0
statsmodels==0.14.0
matplotlib==3.8.0
csaps==1.1.0
pandas==2.0.0
scipy==1.11.3

0 comments on commit 829f565

Please sign in to comment.