Skip to content

Commit 41df828

Browse files
authored
py.test and moving tests out of lib path (tortoise#193)
* Less CI runs on Travis should let it complete faster. * Cleaned up the root folder * Tests no longer in the library module path, so a little easier to keep separate. * Since coveralls broke in handling multiple test runs, at least now the coverage reported will be correct. * Default to py.test due to a bit more features (e.g. collect warnings, etc) Although performance is notably slower than green, it is still worth it for the extra flexibility.
1 parent 2a4a77f commit 41df828

Some content is hidden

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

81 files changed

+213
-232
lines changed

.coveragerc

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ source =
55
omit =
66
tortoise/contrib/pylint/*
77
tortoise/contrib/test/nose2.py
8-
tortoise/tests/*
98
tortoise/contrib/quart/*
109
tortoise/contrib/sanic/*
1110
tortoise/contrib/starlette/*

.travis.yml

+12-19
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,29 @@ python:
55
- 3.7
66
env:
77
global:
8-
TORTOISE_TEST_MODULES=tortoise.tests.testmodels
9-
env:
10-
- TORTOISE_TEST_DB="sqlite:///tmp/test-{}.sqlite"
11-
- TORTOISE_TEST_DB="postgres://postgres:@127.0.0.1:5432/test_{}"
12-
- TORTOISE_TEST_DB="mysql://root:@127.0.0.1:3306/test_{}"
8+
TORTOISE_TEST_MODULES=tests.testmodels
139
matrix:
1410
include:
1511
- python: pypy3.6-7.1.1
16-
env: TORTOISE_TEST_DB="sqlite:///tmp/test-{}.sqlite"
17-
install: pip install -r requirements-pypy.txt
18-
script: green
19-
- python: pypy3.6-7.1.1
20-
env: TORTOISE_TEST_DB="mysql://root:@127.0.0.1:3306/test_{}"
21-
install: pip install -r requirements-pypy.txt
12+
install: pip install -r tests/requirements-pypy.txt
13+
script: make _testall
14+
env: PYTEST_ADDOPTS="--no-cov"
15+
after_success: echo
16+
- python: 3.7
17+
env: TEST_RUNNER=green
2218
script: green
23-
- python: 3.6
24-
env: TEST_RUNNER=py.test
25-
install: pip install -r requirements-dev.txt
26-
script: py.test
27-
- python: 3.6
19+
after_success: echo
20+
- python: 3.7
2821
env: TEST_RUNNER=nose2
29-
install: pip install -r requirements-dev.txt
30-
script: "nose2 --plugin tortoise.contrib.test.nose2 --db-module tortoise.tests.testmodels --db-url sqlite://:memory:"
22+
script: "nose2 --plugin tortoise.contrib.test.nose2 --db-module tests.testmodels --db-url sqlite://:memory:"
23+
after_success: echo
3124
dist: xenial
3225
services:
3326
- postgresql
3427
- mysql
3528
cache: pip
3629
install:
37-
- pip install -r requirements-dev.txt
30+
- pip install -r tests/requirements.txt
3831
script:
3932
- make ci
4033
after_success:

Makefile

+16-20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
checkfiles = tortoise/ examples/ setup.py conftest.py
1+
checkfiles = tortoise/ examples/ tests/ setup.py conftest.py
22
black_opts = -l 100
33
py_warn = PYTHONWARNINGS=default PYTHONASYNCIODEBUG=1 PYTHONDEBUG=x PYTHONDEVMODE=dev
44

@@ -16,15 +16,15 @@ help:
1616
@echo " style Auto-formats the code"
1717

1818
up:
19-
CUSTOM_COMPILE_COMMAND="make up" pip-compile -o requirements-pypy.txt requirements-pypy.in -U
20-
CUSTOM_COMPILE_COMMAND="make up" pip-compile -o requirements-dev.txt requirements-dev.in -U
21-
cat docs/extra_requirements.txt >> requirements-pypy.txt
22-
cat docs/extra_requirements.txt >> requirements-dev.txt
23-
sed -i "s/^-e .*/-e ./" requirements-dev.txt
19+
cd tests && CUSTOM_COMPILE_COMMAND="make up" pip-compile -o requirements-pypy.txt requirements-pypy.in -U
20+
cd tests && CUSTOM_COMPILE_COMMAND="make up" pip-compile -o requirements.txt requirements.in -U
21+
cat tests/extra_requirements.txt >> tests/requirements-pypy.txt
22+
cat tests/extra_requirements.txt >> tests/requirements.txt
23+
sed -i "s/^-e .*/-e ./" tests/requirements.txt
2424

2525
deps:
26-
@pip install -q pip-tools
27-
@pip-sync requirements-dev.txt
26+
@which pip-sync || pip install -q pip-tools
27+
@pip-sync tests/requirements.txt
2828

2929
check: deps
3030
ifneq ($(shell which black),)
@@ -47,20 +47,16 @@ endif
4747
python setup.py check -mrs
4848

4949
test: deps
50-
coverage erase
51-
$(py_warn) coverage run -p --concurrency=multiprocessing `which green`
52-
coverage combine
53-
coverage report
50+
-$(py_warn) TORTOISE_TEST_DB=sqlite://:memory: py.test -q
5451

55-
testall: deps
56-
coverage erase
57-
-$(py_warn) TORTOISE_TEST_DB=sqlite://:memory: coverage run -p --concurrency=multiprocessing `which green`
58-
-$(py_warn) TORTOISE_TEST_DB=postgres://postgres:@127.0.0.1:5432/test_\{\} coverage run -p --concurrency=multiprocessing `which green`
59-
-$(py_warn) TORTOISE_TEST_DB="mysql://root:@127.0.0.1:3306/test_\{\}" coverage run -p --concurrency=multiprocessing `which green`
60-
coverage combine
61-
coverage report
52+
_testall:
53+
-$(py_warn) TORTOISE_TEST_DB=sqlite://:memory: py.test -q --cov-report=
54+
-python -V | grep PyPy || $(py_warn) TORTOISE_TEST_DB=postgres://postgres:@127.0.0.1:5432/test_\{\} py.test -q --cov-append --cov-report=
55+
-$(py_warn) TORTOISE_TEST_DB="mysql://root:@127.0.0.1:3306/test_\{\}" py.test -q --cov-append
6256

63-
ci: check test
57+
testall: deps _testall
58+
59+
ci: check testall
6460

6561
docs: deps
6662
python setup.py build_sphinx -E

conftest.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
from tortoise.contrib.test import finalizer, initializer
1+
import os
22

3+
import pytest
34

4-
def pytest_runtest_setup(item):
5-
initializer(["tortoise.tests.testmodels"], db_url="sqlite://:memory:")
5+
from tortoise.contrib.test import finalizer, initializer
66

77

8-
def pytest_runtest_teardown(item, nextitem):
9-
finalizer()
8+
@pytest.fixture(scope="session", autouse=True)
9+
def initialize_tests(request):
10+
db_url = os.environ.get("TORTOISE_TEST_DB", "sqlite://:memory:")
11+
initializer(["tests.testmodels"], db_url=db_url)
12+
request.addfinalizer(finalizer)

requirements-pypy.txt

-26
This file was deleted.

setup.cfg

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ no-skip-report= True
1717
initializer = tortoise.contrib.test.env_initializer
1818
finalizer = tortoise.contrib.test.finalizer
1919

20+
[tool:pytest]
21+
addopts = -n auto --cov=tortoise
22+
2023
[mypy]
2124
new_semantic_analyzer = True
2225
ignore_missing_imports = True
@@ -36,7 +39,7 @@ allow_redefinition = True
3639
strict_equality = True
3740
show_error_context = True
3841

39-
[mypy-tortoise.tests.*]
42+
[mypy-tests.*]
4043
check_untyped_defs = False
4144
disallow_untyped_defs = False
4245
disallow_incomplete_defs = False

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def requirements() -> list:
3535
# License
3636
license="Apache License Version 2.0",
3737
# Packages
38-
packages=find_packages(include=["tortoise*"], exclude=["tortoise.tests"]),
38+
packages=find_packages(include=["tortoise*"]),
3939
zip_safe=True,
4040
# Include additional files into the package
4141
include_package_data=True,
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
aiocontextvars==0.2.2 ; python_version < "3.7"
22
contextvars==2.4 ; python_version < "3.7"
33
immutables==0.9 ; python_version < "3.7"
4+
pathlib2==2.3.4 ; python_version < "3.6"
File renamed without changes.

tortoise/tests/fields/test_bool.py tests/fields/test_bool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import IntegrityError
3-
from tortoise.tests import testmodels
44

55

66
class TestBooleanFields(test.TestCase):

tortoise/tests/fields/test_char.py tests/fields/test_char.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
from tests import testmodels
12
from tortoise import fields
23
from tortoise.contrib import test
34
from tortoise.exceptions import ConfigurationError, IntegrityError
4-
from tortoise.tests import testmodels
55

66

77
class TestCharFields(test.TestCase):
File renamed without changes.

tortoise/tests/fields/test_decimal.py tests/fields/test_decimal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from decimal import Decimal
22

3+
from tests import testmodels
34
from tortoise import fields
45
from tortoise.contrib import test
56
from tortoise.exceptions import ConfigurationError, IntegrityError
6-
from tortoise.tests import testmodels
77

88

99
class TestDecimalFields(test.TestCase):

tortoise/tests/fields/test_fk.py tests/fields/test_fk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import IntegrityError, NoValuesFetched, OperationalError
3-
from tortoise.tests import testmodels
44

55

66
class TestForeignKeyField(test.TestCase):

tortoise/tests/fields/test_fk_uuid.py tests/fields/test_fk_uuid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import IntegrityError, NoValuesFetched, OperationalError
3-
from tortoise.tests import testmodels
44

55

66
class TestForeignKeyUUIDField(test.TestCase):

tortoise/tests/fields/test_float.py tests/fields/test_float.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from decimal import Decimal
22

3+
from tests import testmodels
34
from tortoise.contrib import test
45
from tortoise.exceptions import IntegrityError
5-
from tortoise.tests import testmodels
66

77

88
class TestFloatFields(test.TestCase):

tortoise/tests/fields/test_int.py tests/fields/test_int.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import IntegrityError
3-
from tortoise.tests import testmodels
44

55

66
class TestIntFields(test.TestCase):

tortoise/tests/fields/test_json.py tests/fields/test_json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import IntegrityError
3-
from tortoise.tests import testmodels
44

55

66
class TestJSONFields(test.TestCase):

tortoise/tests/fields/test_m2m.py tests/fields/test_m2m.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import OperationalError
3-
from tortoise.tests import testmodels
44

55

66
class TestManyToManyField(test.TestCase):

tortoise/tests/fields/test_m2m_uuid.py tests/fields/test_m2m_uuid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from tests import testmodels
12
from tortoise.contrib import test
23
from tortoise.exceptions import OperationalError
3-
from tortoise.tests import testmodels
44

55

66
class TestManyToManyUUIDField(test.TestCase):

tortoise/tests/fields/test_time.py tests/fields/test_time.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from datetime import date, datetime, timedelta
22
from time import sleep
33

4+
from tests import testmodels
45
from tortoise import fields
56
from tortoise.contrib import test
67
from tortoise.exceptions import ConfigurationError, IntegrityError
7-
from tortoise.tests import testmodels
88

99

1010
class TestDatetimeFields(test.TestCase):

tortoise/tests/fields/test_uuid.py tests/fields/test_uuid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import uuid
22

3+
from tests import testmodels
34
from tortoise.contrib import test
45
from tortoise.exceptions import IntegrityError
5-
from tortoise.tests import testmodels
66

77

88
class TestUUIDFields(test.TestCase):

tortoise/tests/init.json tests/init.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"apps": {
1111
"models": {
1212
"models": [
13-
"tortoise.tests.testmodels"
13+
"tests.testmodels"
1414
],
1515
"default_connection": "default"
1616
}

tortoise/tests/init.yaml tests/init.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apps:
22
models:
33
default_connection: default
44
models:
5-
- tortoise.tests.testmodels
5+
- tests.testmodels
66
connections:
77
default:
88
credentials:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

requirements-pypy.in tests/requirements-pypy.in

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-r requirements.txt
1+
-r ../requirements.txt
22

33
# Optional dependencies
44
pyyaml>=4.2b1
@@ -10,4 +10,7 @@ aiomysql
1010

1111
## Test tools
1212
asynctest
13-
green
13+
pytest
14+
pytest-xdist
15+
pytest-cov
16+
coveralls

tests/requirements-pypy.txt

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# make up
6+
#
7+
aiomysql==0.0.20
8+
aiosqlite==0.10.0
9+
apipkg==1.5 # via execnet
10+
asn1crypto==0.24.0 # via cryptography
11+
asynctest==0.13.0
12+
atomicwrites==1.3.0 # via pytest
13+
attrs==19.1.0 # via pytest
14+
certifi==2019.9.11 # via requests
15+
cffi==1.12.3 # via cryptography
16+
chardet==3.0.4 # via requests
17+
ciso8601==2.1.1
18+
coverage==4.5.4 # via coveralls, pytest-cov
19+
coveralls==1.8.2
20+
cryptography==2.7 # via pymysql
21+
docopt==0.6.2 # via coveralls
22+
execnet==1.7.1 # via pytest-xdist
23+
idna==2.8 # via requests
24+
importlib-metadata==0.23 # via pluggy, pytest
25+
more-itertools==7.2.0 # via pytest, zipp
26+
packaging==19.2 # via pytest
27+
pluggy==0.13.0 # via pytest
28+
py==1.8.0 # via pytest
29+
pycparser==2.19 # via cffi
30+
pymysql==0.9.2 # via aiomysql
31+
pyparsing==2.4.2 # via packaging
32+
pypika==0.35.5
33+
pytest-cov==2.7.1
34+
pytest-forked==1.0.2 # via pytest-xdist
35+
pytest-xdist==1.29.0
36+
pytest==5.1.3
37+
pyyaml==5.1.2
38+
requests==2.22.0 # via coveralls
39+
six==1.12.0 # via cryptography, packaging, pytest-xdist
40+
urllib3==1.25.5 # via requests
41+
wcwidth==0.1.7 # via pytest
42+
zipp==0.6.0 # via importlib-metadata
43+
aiocontextvars==0.2.2 ; python_version < "3.7"
44+
contextvars==2.4 ; python_version < "3.7"
45+
immutables==0.9 ; python_version < "3.7"
46+
pathlib2==2.3.4 ; python_version < "3.6"

0 commit comments

Comments
 (0)