Skip to content

Commit 9aa68fe

Browse files
committed
Make integration test 2.4.x common
1 parent 066db9a commit 9aa68fe

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,9 @@ test-integration:
5050
pytest -v -m integration
5151
@killall rethinkdb
5252

53-
test-integration-2.4:
54-
pytest -v -m integration_v2_4_x
55-
5653
test-ci:
5754
@rethinkdb&
58-
pytest -v --cov rethinkdb --cov-report xml --ignore=tests/integration/test_write_hooks.py
55+
pytest -v --cov rethinkdb --cov-report xml
5956
@killall rethinkdb
6057

6158
test-remote:

pytest.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python_files = test_*.py
33
markers =
44
unit: Run unit tests
55
integration: Run integration tests
6-
integration_v2_4_x: Run 2.4.x only integration tests
76
trio: Run trio related tests
87
tornado: Run tornado related tests
98
asyncio: Run asyncio related tests

tests/integration/test_write_hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from tests.helpers import IntegrationTestCaseBase
44

5-
@pytest.mark.integration_v2_4_x
5+
@pytest.mark.integration
66
class TestWriteHooks(IntegrationTestCaseBase):
77
def setup_method(self):
88
super(TestWriteHooks, self).setup_method()

0 commit comments

Comments
 (0)