Skip to content

Commit 424f7da

Browse files
committed
remove testing concurrency
1 parent 47c3bd1 commit 424f7da

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/integration-tests-azure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ jobs:
7070
DBT_TEST_AAD_PRINCIPAL_1: ${{ secrets.DBT_TEST_AAD_PRINCIPAL_1 }}
7171
DBT_TEST_AAD_PRINCIPAL_2: ${{ secrets.DBT_TEST_AAD_PRINCIPAL_2 }}
7272
SQLSERVER_TEST_DRIVER: 'ODBC Driver ${{ matrix.msodbc_version }} for SQL Server'
73-
run: pytest -n auto -ra -v tests/functional --profile "${{ matrix.profile }}"
73+
run: pytest -ra -v tests/functional --profile "${{ matrix.profile }}"

.github/workflows/integration-tests-sqlserver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: pip install -r dev_requirements.txt
3939

4040
- name: Run functional tests
41-
run: pytest -n auto -ra -v tests/functional --profile "ci_sql_server"
41+
run: pytest -ra -v tests/functional --profile "ci_sql_server"
4242
env:
4343
DBT_TEST_USER_1: DBT_TEST_USER_1
4444
DBT_TEST_USER_2: DBT_TEST_USER_2

tests/functional/adapter/test_provision_users.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def test_auto_provision(self, project):
6060
run_dbt(["run"])
6161

6262

63-
@pytest.mark.only_with_profile("ci_azure_cli", "ci_azure_auto", "ci_azure_environment")
63+
@pytest.mark.only_with_profile(
64+
"ci_azure_cli", "ci_azure_auto", "ci_azure_environment", "user_azure"
65+
)
6466
@pytest.mark.flaky(max_runs=5, min_passes=1)
6567
class TestProvisionSingleUserAzureSQL(BaseTestProvisionAzureSQL):
6668
@pytest.fixture(scope="class")
@@ -71,7 +73,9 @@ def models(self):
7173
}
7274

7375

74-
@pytest.mark.only_with_profile("ci_azure_cli", "ci_azure_auto", "ci_azure_environment")
76+
@pytest.mark.only_with_profile(
77+
"ci_azure_cli", "ci_azure_auto", "ci_azure_environment", "user_azure"
78+
)
7579
@pytest.mark.flaky(max_runs=5, min_passes=1)
7680
class TestProvisionMultipleUsersAzureSQL(BaseTestProvisionAzureSQL):
7781
@pytest.fixture(scope="class")

0 commit comments

Comments
 (0)