@@ -81,22 +81,22 @@ engine-down:
8181 docker-compose -f ./tests/core/engine_adapter/docker-compose.yaml down
8282
8383fast-test :
84- pytest -m " fast"
84+ pytest -n auto - m " fast"
8585
8686slow-test :
87- pytest -m " fast or slow"
87+ pytest -n auto - m " fast or slow"
8888
8989core-fast-test :
90- pytest -m " fast and not web and not github and not dbt and not airflow and not jupyter"
90+ pytest -n auto - m " fast and not web and not github and not dbt and not airflow and not jupyter"
9191
9292core-slow-test :
93- pytest -m " (fast or slow) and not web and not github and not dbt and not airflow and not jupyter"
93+ pytest -n auto - m " (fast or slow) and not web and not github and not dbt and not airflow and not jupyter"
9494
9595airflow-fast-test :
96- pytest -m " fast and airflow"
96+ pytest -n auto - m " fast and airflow"
9797
9898airflow-test :
99- pytest -m " (fast or slow) and airflow"
99+ pytest -n auto - m " (fast or slow) and airflow"
100100
101101airflow-local-test :
102102 export AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:airflow@localhost/airflow && \
@@ -110,58 +110,58 @@ airflow-local-test-with-env: develop airflow-clean airflow-init airflow-run airf
110110airflow-docker-test-with-env : develop airflow-clean airflow-init airflow-run airflow-docker-test airflow-stop
111111
112112engine-slow-test :
113- pytest -m " (fast or slow) and engine"
113+ pytest -n auto - m " (fast or slow) and engine"
114114
115115engine-docker-test :
116- pytest -m " docker and engine"
116+ pytest -n auto - m " docker and engine"
117117
118118engine-remote-test :
119- pytest -m " remote and engine"
119+ pytest -n auto - m " remote and engine"
120120
121121engine-test :
122- pytest -m " engine"
122+ pytest -n auto - m " engine"
123123
124124dbt-test :
125- pytest -m " dbt"
125+ pytest -n auto - m " dbt"
126126
127127github-test :
128- pytest -m " github"
128+ pytest -n auto - m " github"
129129
130130jupyter-test :
131- pytest -m " jupyter"
131+ pytest -n auto - m " jupyter"
132132
133133web-test :
134- pytest -m " web"
134+ pytest -n auto - m " web"
135135
136136bigquery-test :
137- pytest -m " bigquery"
137+ pytest -n auto - m " bigquery"
138138
139139databricks-test :
140- pytest -m " databricks"
140+ pytest -n auto - m " databricks"
141141
142142duckdb-test :
143- pytest -m " duckdb"
143+ pytest -n auto - m " duckdb"
144144
145145mssql-test :
146- pytest -m " mssql"
146+ pytest -n auto - m " mssql"
147147
148148mysql-test :
149- pytest -m " mysql"
149+ pytest -n auto - m " mysql"
150150
151151postgres-test :
152- pytest -m " postgres"
152+ pytest -n auto - m " postgres"
153153
154154redshift-test :
155- pytest -m " redshift"
155+ pytest -n auto - m " redshift"
156156
157157snowflake-test :
158- pytest -m " snowflake"
158+ pytest -n auto - m " snowflake"
159159
160160spark-test :
161- pytest -m " spark"
161+ pytest -n auto - m " spark"
162162
163163spark-pyspark-test :
164- pytest -m " spark_pyspark"
164+ pytest -n auto - m " spark_pyspark"
165165
166166trino-test :
167- pytest -m " trino"
167+ pytest -n auto - m " trino"
0 commit comments