v2.0 of zeus21! #67
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Python Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install CLASS dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential gfortran | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pytest pytest-cov | |
| pip install Cython | |
| pip install -r requirements.txt | |
| - name: Install CLASS | |
| run: | | |
| git clone https://github.com/lesgourg/class_public.git | |
| cd class_public | |
| make | |
| cd python | |
| python setup.py install | |
| cd ../../ | |
| # Keep the directory for data files | |
| - name: Install package | |
| run: | | |
| pip install -e . | |
| - name: Run tests with coverage | |
| env: | |
| CLASSDIR: ${{ github.workspace }}/class_public | |
| run: | | |
| python -m pytest --cov=zeus21 --cov-report=xml --cov-report=term tests/ | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v4 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| with: | |
| files: ./coverage.xml | |
| flags: unittests | |
| name: codecov-umbrella | |
| verbose: true | |
| fail_ci_if_error: false |