Skip to content

Commit

Permalink
Merge pull request #38 from rodrigo-arenas/0.6.Xdev
Browse files Browse the repository at this point in the history
O.S matrix test
  • Loading branch information
rodrigo-arenas committed Jun 25, 2021
2 parents 3e24181 + 4f2fab1 commit 4b51027
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ on: [push, pull_request]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -20,7 +21,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
pip install -r dev-requirements.txt
- name: Test with pytest
run: |
pytest sklearn_genetic/ --verbose --color=yes --assert=plain --cov-fail-under=95 --cov-config=.coveragerc --cov=./ -p no:warnings
Expand Down

0 comments on commit 4b51027

Please sign in to comment.