Skip to content

Commit 99170df

Browse files
Move tests/ to project root (#361)
1 parent 87d4aea commit 99170df

40 files changed

+25
-34
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
paths:
88
- ".github/workflows/*"
99
- "pymc_experimental/**"
10+
- "tests/**"
1011
- "setup.py"
1112
- "pyproject.toml"
1213
- "buildosx"
@@ -20,7 +21,7 @@ jobs:
2021
os: [ubuntu-latest]
2122
python-version: ["3.10"]
2223
test-subset:
23-
- pymc_experimental/tests
24+
- tests
2425
fail-fast: false
2526
runs-on: ${{ matrix.os }}
2627
env:
@@ -58,7 +59,7 @@ jobs:
5859
os: [windows-latest]
5960
python-version: ["3.12"]
6061
test-subset:
61-
- pymc_experimental/tests
62+
- tests
6263
fail-fast: false
6364
runs-on: ${{ matrix.os }}
6465
env:

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ coverage:
2222
base: auto
2323

2424
ignore:
25-
- "pymc_experimental/tests/*"
25+
- "tests/*"
2626

2727
comment:
2828
layout: "reach, diff, flags, files"
File renamed without changes.
File renamed without changes.

pymc_experimental/tests/model/test_marginal_model.py renamed to tests/model/test_marginal_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
is_conditional_dependent,
2323
marginalize,
2424
)
25-
from pymc_experimental.tests.utils import equal_computations_up_to_root
25+
from tests.utils import equal_computations_up_to_root
2626

2727

2828
@pytest.fixture

0 commit comments

Comments
 (0)