Skip to content

Commit eef528c

Browse files
committed
Clean up old configs; add test workflow
1 parent 96d47e7 commit eef528c

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.codecov.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Tests
2+
on: [push, pull_request]
3+
jobs:
4+
tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-python@v5
9+
- name: Install pyforc
10+
run: pip install '.[test]'
11+
- name: Run Tests
12+
run: pytest --cov

.prettierrc.toml

Lines changed: 0 additions & 3 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ profile = "black"
4242

4343
[project.optional-dependencies]
4444
dev = ["pre-commit>=3.6.0"]
45-
test = ["pytest"]
45+
test = ["pytest", "pytest-cov"]
4646
doc = ["sphinx", "myst-parser"]
4747

4848
[tool.ruff]

0 commit comments

Comments
 (0)