Update quick_start.rst (#1049) #381
This file contains 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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.7, 3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' # caching pip dependencies | |
- name: Install dependencies | |
run: | | |
# Do all the installations | |
python -m pip install --upgrade pip wheel setuptools | |
pip install .[testing] | |
# Print out the pip versions for debugging | |
pip list | |
- name: Test with pytest | |
run: | | |
pytest --junitxml=junit/test-results-${{ matrix.python-version }}-${{ matrix.installation }}.xml --cov-report=xml tests | |
- name: Upload pytest test results | |
uses: actions/upload-artifact@v1 | |
with: | |
name: pytest-results-${{ matrix.python-version }}-${{ matrix.installation }} | |
path: junit/test-results-${{ matrix.python-version }}-${{ matrix.installation }}.xml | |
# Use always() to always run this step to publish test results when there are test failures | |
if: ${{ always() }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |