summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHernan <hernan.grecco@gmail.com>2022-10-26 09:10:17 -0300
committerHernan <hernan.grecco@gmail.com>2022-10-26 09:10:17 -0300
commit5e3c937a4782c1fc55561e90c157eeb68211d203 (patch)
tree9d8b60cc9164b1f9565d7f8245482cf8eb3e2730 /.github
parentcc02904f5ef55340c5907f22e70f0578801fe3af (diff)
downloadpint-5e3c937a4782c1fc55561e90c157eeb68211d203.tar.gz
Move macos test to independent section
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml75
1 files changed, 63 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 422fd77..8e44023 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -92,20 +92,9 @@ jobs:
strategy:
fail-fast: false
matrix:
- platform: [windows-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
numpy: [ "numpy>=1.19,<2.0.0" ]
- # uncertainties: [null, "uncertainties==3.1.6", "uncertainties>=3.1.6,<4.0.0"]
- # extras: [null]
- # include:
- # - python-version: 3.8 # Minimal versions
- # numpy: numpy==1.19.5
- # extras: matplotlib==2.2.5
- # - python-version: 3.8
- # numpy: "numpy"
- # uncertainties: "uncertainties"
- # extras: "sparse xarray netCDF4 dask[complete] graphviz babel==2.8"
- runs-on: ${{ matrix.platform }}
+ runs-on: windows-latest
env:
TEST_OPTS: "-rfsxEX -s -k issue1498b"
@@ -160,6 +149,68 @@ jobs:
- name: Run tests
run: pytest ${env:TEST_OPTS}
+ test-macos:
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: [3.8, 3.9, "3.10", "3.11"]
+ numpy: [ "numpy>=1.19,<2.0.0" ]
+ runs-on: macos-latest
+
+ env:
+ TEST_OPTS: "-rfsxEX -s --cov=pint --cov-config=.coveragerc"
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 100
+
+ - name: Get tags
+ run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Get pip cache dir
+ id: pip-cache
+ run: echo "::set-output name=dir::$(pip cache dir)"
+
+ - name: Setup caching
+ uses: actions/cache@v2
+ with:
+ path: ${{ steps.pip-cache.outputs.dir }}
+ key: pip-${{ matrix.python-version }}
+ restore-keys: |
+ pip-${{ matrix.python-version }}
+
+ - name: Install numpy
+ if: ${{ matrix.numpy != null }}
+ run: pip install "${{matrix.numpy}}"
+
+ - name: Install dependencies
+ run: |
+ pip install pytest pytest-cov pytest-subtests
+ pip install .
+
+ - name: Run Tests
+ run: |
+ pytest $TEST_OPTS
+
+ - name: Coverage report
+ run: coverage report -m
+
+ - name: Coveralls Parallel
+ env:
+ COVERALLS_FLAG_NAME: ${{ matrix.test-number }}
+ COVERALLS_PARALLEL: true
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ COVERALLS_SERVICE_NAME: github
+ run: |
+ pip install coveralls
+ coveralls
+
coveralls:
needs: test-linux
runs-on: ubuntu-latest