Compare commits
3 commits
e81d10d08a
...
64cdcb1122
| Author | SHA1 | Date | |
|---|---|---|---|
|
64cdcb1122 |
|||
|
3cd02a36a4 |
|||
|
e82b6b292c |
4 changed files with 797 additions and 15 deletions
2
.github/workflows/pytest.yaml
vendored
2
.github/workflows/pytest.yaml
vendored
|
|
@ -36,4 +36,4 @@ jobs:
|
||||||
- name: Install corrlib
|
- name: Install corrlib
|
||||||
run: uv sync --locked --all-extras --dev --python ${{ matrix.python-version }}
|
run: uv sync --locked --all-extras --dev --python ${{ matrix.python-version }}
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: uv run pytest tests
|
run: uv run pytest --cov=corrlib tests
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,3 +5,4 @@ test.ipynb
|
||||||
.vscode
|
.vscode
|
||||||
.venv
|
.venv
|
||||||
.pytest_cache
|
.pytest_cache
|
||||||
|
.coverage
|
||||||
|
|
@ -32,5 +32,6 @@ ignore = ["F403"]
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
dev = [
|
dev = [
|
||||||
"pytest>=9.0.1",
|
"pytest>=9.0.1",
|
||||||
|
"pytest-cov>=7.0.0",
|
||||||
"pytest-pretty>=1.3.0",
|
"pytest-pretty>=1.3.0",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue