Skip to content

Fix/101 conftest

Fix/101 conftest #15

Workflow file for this run

{
"name": "Test",
"on": {
"workflow_dispatch": {},
"pull_request": {
"branches": [
"main"
],
"types": [
"ready_for_review",
"synchronize"
]
}
},
"jobs": {
"build": {
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "actions/checkout@v3"
},
{
"name": "Set up Python",
"uses": "actions/setup-python@v4",
"with": {
"python-version": "3.11"
}
},
{
"name": "Install dependencies",
"run": "python -m pip install --upgrade pip\npip install -r requirements-dev.txt\npip install -e ."
},
{
"name": "Tests",
"run": "pytest"
},
{
"name": "Integration tests",
"run": "pytest --nbval-lax --nbval-current-env Example.ipynb tests/Test*.ipynb"
}
]
}
}
}