Skip to content

Remove handling of ECEMF scenario processing #687

Remove handling of ECEMF scenario processing

Remove handling of ECEMF scenario processing #687

Workflow file for this run

# This workflow will install Python dependencies and run the tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Pytest
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install the package and run the tests
run: |
pip install --upgrade pip
pip install --editable .[tests]
pytest tests