Skip to content

Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the github-actions group #900

Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the github-actions group

Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the github-actions group #900

Workflow file for this run

name: Selenium Tests
on:
pull_request:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.12" ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- 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