Skip to content

Commit cb64936

Browse files
committed
Move integration tests beneath tests folder
Fortunately, it does not confuse pytest to have this folder there.
1 parent 332df50 commit cb64936

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

bin/lint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ dir=$(dirname "$0")
44
cd "$dir/.."
55

66
exitCode=0
7-
black src it tests
7+
black src tests
88
code=$?; test $code -eq 0 || exitCode=$code
9-
isort src it tests
9+
isort src tests
1010
code=$?; test $code -eq 0 || exitCode=$code
11-
python -m flake8 src it tests
11+
python -m flake8 src tests
1212
code=$?; test $code -eq 0 || exitCode=$code
1313
validate-pyproject pyproject.toml
1414
code=$?; test $code -eq 0 || exitCode=$code

bin/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ echo "-------------------------------------------"
3030
echo "| Running integration tests (JPype only) |"
3131
echo "-------------------------------------------"
3232
itCode=0
33-
for t in it/*.py
33+
for t in tests/it/*.py
3434
do
3535
python "$t"
3636
code=$?
File renamed without changes.

0 commit comments

Comments
 (0)