Skip to content

Documentation project #532

Documentation project

Documentation project #532

Workflow file for this run

name: Selenium Tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v1
with:
environment-name: TEST
create-args: >-
python=3
--file requirements.txt
--file requirements-dev.txt
- name: Install folium from source
shell: bash -l {0}
run: python -m pip install -e . --no-deps --force-reinstall
- name: Selenium tests
shell: bash -l {0}
run: python -m pytest tests/selenium -vv