@@ -65,10 +65,10 @@ broker-start: ##Broker Start broker
6565
6666
6767
68- test : test-db test-broker # #@Test Run tests
68+ test : test-db test-broker # #@Test Run tests
6969 ${POETRY} run pytest $(PYTEST_ARGS )
7070
71- test-db : test-db-start db-upgrade # #@TestDB Prepare database (in docker)
71+ test-db : test-db-start db-upgrade # #@TestDBPrepare database (in docker)
7272
7373test-db-start : # #@TestDB Start database
7474 docker compose -f docker-compose.test.yml up -d --wait db $(DOCKER_COMPOSE_ARGS )
@@ -78,33 +78,37 @@ test-broker: test-broker-start ##@TestBroker Prepare broker (in docker)
7878test-broker-start : # #@TestBroker Start broker
7979 docker compose -f docker-compose.test.yml up -d --wait rabbitmq $(DOCKER_COMPOSE_ARGS )
8080
81- test-unit : test-db # #@Test Run unit tests
81+ test-unit : test-db # #@Test Run unit tests
8282 ${POETRY} run pytest ./tests/test_unit ./tests/test_database $(PYTEST_ARGS )
8383
84- test-integration-hdfs : test-db # #@Test Run integration tests for HDFS
84+ test-integration-hdfs : test-db # #@Test Run integration tests for HDFS
8585 docker compose -f docker-compose.test.yml --profile hdfs up -d --wait $(DOCKER_COMPOSE_ARGS )
8686 ${POETRY} run pytest ./tests/test_integration -m hdfs $(PYTEST_ARGS )
8787
88- test-integration-hive : test-db # #@Test Run integration tests for Hive
88+ test-integration-hive : test-db # #@Test Run integration tests for Hive
8989 docker compose -f docker-compose.test.yml --profile hive up -d --wait $(DOCKER_COMPOSE_ARGS )
9090 ${POETRY} run pytest ./tests/test_integration -m hive $(PYTEST_ARGS )
9191
92- test-integration-oracle : test-db # #@Test Run integration tests for Oracle
92+ test-integration-clickhouse : test-db # #@Test Run integration tests for Clickhouse
93+ docker compose -f docker-compose.test.yml --profile clickhouse up -d --wait $(DOCKER_COMPOSE_ARGS )
94+ ${POETRY} run pytest ./tests/test_integration -m clickhouse $(PYTEST_ARGS )
95+
96+ test-integration-oracle : test-db # #@Test Run integration tests for Oracle
9397 docker compose -f docker-compose.test.yml --profile oracle up -d --wait $(DOCKER_COMPOSE_ARGS )
9498 ${POETRY} run pytest ./tests/test_integration -m oracle $(PYTEST_ARGS )
9599
96- test-integration-s3 : test-db # #@Test Run integration tests for S3
100+ test-integration-s3 : test-db # #@Test Run integration tests for S3
97101 docker compose -f docker-compose.test.yml --profile s3 up -d --wait $(DOCKER_COMPOSE_ARGS )
98102 ${POETRY} run pytest ./tests/test_integration -m s3 $(PYTEST_ARGS )
99103
100- test-integration : test-db # #@Test Run all integration tests
104+ test-integration : test-db # #@Test Run all integration tests
101105 docker compose -f docker-compose.test.yml --profile all up -d --wait $(DOCKER_COMPOSE_ARGS )
102106 ${POETRY} run pytest ./tests/test_integration $(PYTEST_ARGS )
103107
104- test-check-fixtures : # #@Test Check declared fixtures
108+ test-check-fixtures : # #@Test Check declared fixtures
105109 ${POETRY} run pytest --dead-fixtures $(PYTEST_ARGS )
106110
107- test-cleanup : # #@Test Cleanup tests dependencies
111+ test-cleanup : # #@Test Cleanup tests dependencies
108112 docker compose -f docker-compose.test.yml --profile all down $(ARGS )
109113
110114
0 commit comments