Skip to content

Commit dcedefa

Browse files
committed
Move tests to top level.
1 parent ea78681 commit dcedefa

File tree

15 files changed

+10
-4
lines changed

15 files changed

+10
-4
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
11-
os: [macos-latest, ubuntu-latest, windows-latest]
10+
# python: ['3.9', '3.10', '3.11', '3.12', '3.13']
11+
python: ['3.13']
12+
# os: [macos-latest, ubuntu-latest, windows-latest]
13+
os: [ubuntu-latest]
1214

1315
steps:
1416
- uses: actions/checkout@v4
@@ -42,7 +44,8 @@ jobs:
4244
run: pip install tox
4345

4446
- name: Run tox
45-
run: tox -e with_optional,runner,module,integration
47+
# run: tox -e with_optional,runner,module,integration
48+
run: tox -e with_optional
4649

4750
coverage:
4851
needs: extra

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ sources = ["src"]
6161
include = ["docs/releases.rst", "LICENSE"]
6262
sources = ["src"]
6363

64+
[tool.pytest.ini_options]
65+
pythonpath = [".", "src"]
66+
6467
[tool.ruff.lint]
6568
select = [
6669
# pycodestyle
File renamed without changes.

0 commit comments

Comments
 (0)