Skip to content

Maps update clean

Maps update clean #144

name: Pytests
on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 1
- uses: nanasess/setup-chromedriver@v1
- name: Install Chrome Driver
run: chromedriver --url-base=/wd/hub &
- name: Setup conda
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: windows_tests.yml
- name: Install Dependencies
shell: powershell
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install pytest-cov
python -m pip install .[dev]
- name: Run Pytest
shell: powershell
run: |
python -m pytest -v --disable-warnings