Skip to content

Commit

Permalink
Merge pull request #99 from chmp/fix/sdist-for-conda-forge
Browse files Browse the repository at this point in the history
Fix sdist for conda-forge
  • Loading branch information
chmp authored May 19, 2023
2 parents 2677403 + affc6ee commit 5972788
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,7 @@
"name": "Test",
"on": {
"workflow_dispatch": {},
"pull_request": {
"branches": [
"main"
],
"types": [
"ready_for_review",
"synchronize"
]
}
"pull_request": {}
},
"jobs": {
"build": {
Expand All @@ -30,13 +22,21 @@
"name": "Install dependencies",
"run": "python -m pip install --upgrade pip\npip install -r requirements-dev.txt\npip install -e ."
},
{
"name": "Check format",
"run": "python -m black --check ."
},
{
"name": "Check lints",
"run": "python -m ruff check ."
},
{
"name": "Tests",
"run": "pytest"
"run": "python -m pytest"
},
{
"name": "Integration tests",
"run": "pytest --nbval-lax --nbval-current-env Example.ipynb tests/Test*.ipynb"
"run": "python -m pytest --nbval-lax --nbval-current-env Example.ipynb tests/Test*.ipynb"
}
]
}
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ description = "Unit tests in IPython notebooks"
readme = "Readme.md"
license = "MIT"

include = ["License.md"]

classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 5972788

Please sign in to comment.