Skip to content

Commit 0e1aa78

Browse files
committed
no virtual env for cxn tests
1 parent 9bef882 commit 0e1aa78

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

.circleci/config.yml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,10 @@ jobs:
5353
connection-sqlserver:
5454
<<: *sqlserver
5555
steps:
56-
- attach_workspace:
57-
at: .
56+
- checkout
5857
- run: &install-dbt-sqlserver
5958
name: "install dbt-sqlserver"
60-
command: |
61-
pip install .
59+
command: pip install .
6260
- run:
6361
name: wait for SQL Server container to set up
6462
command: sleep 30
@@ -91,8 +89,7 @@ jobs:
9189
connection-azuresql:
9290
docker: *msodbc_py
9391
steps:
94-
- attach_workspace:
95-
at: .
92+
- checkout
9693
- run: *install-dbt-sqlserver
9794
- azure-cli/install
9895
- run: *prep=connect
@@ -125,14 +122,15 @@ workflows:
125122
main:
126123
jobs:
127124
- build
128-
- unit:
125+
- unit: &build
129126
requires:
130127
- build
131-
- connection-azuresql: &unit_and_profile
128+
- connection-azuresql: &profile
132129
context:
133130
- DBT_SYNAPSE_PROFILE
134-
requires:
135-
- unit
136-
- connection-sqlserver: *unit_and_profile
137-
- integration-sqlserver: *unit_and_profile
138-
- integration-azuresql: *unit_and_profile
131+
- connection-sqlserver: *profile
132+
- integration-sqlserver: &build_and_profile
133+
<<: *build
134+
context:
135+
- DBT_SYNAPSE_PROFILE
136+
- integration-azuresql: *build_and_profile

0 commit comments

Comments
 (0)