File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,15 @@ default: help
32
32
help :
33
33
@echo " Usage:"
34
34
@echo
35
- @echo " make help Print this help message"
36
- @echo " make test-unit Run unit tests"
37
- @echo " make test-integration Run integration tests"
38
- @echo " make test-remote Run tests on digital ocean"
39
- @echo " make upload-coverage Upload unit test coverage"
40
- @echo " make upload-pypi Release ${PACKAGE_NAME} package to PyPi"
41
- @echo " make clean Cleanup source directory"
42
- @echo " make prepare Prepare ${PACKAGE_NAME} for build"
35
+ @echo " make help Print this help message"
36
+ @echo " make test-unit Run unit tests"
37
+ @echo " make test-integration Run integration tests"
38
+ @echo " make test-integration-2.4 Run integration tests"
39
+ @echo " make test-remote Run tests on digital ocean"
40
+ @echo " make upload-coverage Upload unit test coverage"
41
+ @echo " make upload-pypi Release ${PACKAGE_NAME} package to PyPi"
42
+ @echo " make clean Cleanup source directory"
43
+ @echo " make prepare Prepare ${PACKAGE_NAME} for build"
43
44
44
45
test-unit :
45
46
pytest -v -m unit
@@ -49,6 +50,11 @@ test-integration:
49
50
pytest -v -m integration
50
51
@killall rethinkdb
51
52
53
+ test-integration-2.4 :
54
+ @rethinkdb&
55
+ pytest -v -m integration_v2_4_x
56
+ @killall rethinkdb
57
+
52
58
test-ci :
53
59
@rethinkdb&
54
60
pytest -v --cov rethinkdb --cov-report xml
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ python_files = test_*.py
3
3
markers =
4
4
unit: Run unit tests
5
5
integration: Run integration tests
6
+ integration_v2_4_x: Run 2.4.x only integration tests
6
7
trio: Run trio related tests
7
8
tornado: Run tornado related tests
8
9
asyncio: Run asyncio related tests
You can’t perform that action at this time.
0 commit comments