Skip to content

Commit fd52476

Browse files
committed
Move tests to test
1 parent 7d94425 commit fd52476

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+5
-5
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
prune .github
44
prune doc
55
prune env
6-
prune tests
6+
prune test
77
exclude .*.yml
88
exclude .*rc
99
exclude .gitignore

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build, package, test, and clean
22
PROJECT=harmonica
3-
STYLE_CHECK_FILES=src/$(PROJECT) tests doc
3+
STYLE_CHECK_FILES=src/$(PROJECT) test doc
44
GITHUB_ACTIONS=.github/workflows
55

66
.PHONY: build install test test_coverage test_numba format check check-format check-style check-actions clean
@@ -27,10 +27,10 @@ install:
2727
test: test_coverage test_numba
2828

2929
test_coverage:
30-
NUMBA_DISABLE_JIT=1 MPLBACKEND='agg' pytest --verbose --cov --cov-config="pyproject.toml" --doctest-modules --doctest-continue-on-failure src/$(PROJECT) tests
30+
NUMBA_DISABLE_JIT=1 MPLBACKEND='agg' pytest --verbose --cov --cov-config="pyproject.toml" --doctest-modules --doctest-continue-on-failure src/$(PROJECT) test
3131

3232
test_numba:
33-
NUMBA_DISABLE_JIT=0 MPLBACKEND='agg' pytest --verbose --doctest-modules --doctest-continue-on-failure -m use_numba src/$(PROJECT) tests
33+
NUMBA_DISABLE_JIT=0 MPLBACKEND='agg' pytest --verbose --doctest-modules --doctest-continue-on-failure -m use_numba src/$(PROJECT) test
3434

3535
format:
3636
ruff check --select I --fix $(STYLE_CHECK_FILES) # fix isort errors

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ ignore = [
123123
[tool.ruff.lint.per-file-ignores]
124124
"__init__.py" = ["F401"] # disable unused-imports errors on __init__.py
125125
"_kernels.py" = ["ARG001"] # disable unused arguments in kernel files
126-
"tests/**" = [
126+
"test/**" = [
127127
"T20", # allow print statements in tests
128128
"D", # ignore pydocstyle warnings in tests
129129
"RUF012", # ignore undecorated mutable class attributes
File renamed without changes.

0 commit comments

Comments
 (0)