TST: migrate from cypress to playwright #4898
Workflow file for this run
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: "Tests" | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/test.yaml" | |
- "tests/**" | |
- "scripts/**" | |
- "src/**" | |
- "pyproject.toml" | |
- "pytest.ini" | |
push: | |
branches: | |
- main | |
- develop | |
- release/\d{4}.\d{1,2}.\d{1,2} | |
paths: | |
- ".github/workflows/test.yaml" | |
- "tests/**" | |
- "scripts/**" | |
- "src/**" | |
- "pyproject.toml" | |
- "pytest.ini" | |
jobs: | |
test-general: | |
name: "Pytest" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
fail-fast: false | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.python-version }} | |
cancel-in-progress: true | |
steps: | |
- name: "Checkout Infrastructure" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge,defaults | |
activate-environment: nebari-dev | |
- name: Install conda-build | |
run: | | |
conda install --quiet --yes conda-build | |
- name: Install Nebari | |
run: | | |
python --version | |
pip install -e .[dev] | |
- name: Test Nebari | |
run: | | |
pytest --version | |
pytest --cov=src --cov-report=xml --cov-config=pyproject.toml tests/tests_unit | |
- name: Report Coverage | |
run: | | |
coverage report -m |