Skip to content

Commit

Permalink
fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vakarisbk committed Oct 3, 2023
1 parent bebcee1 commit f251090
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ jobs:
steps:
- run:
name: install python, pip and git, tox
command: apt update && apt install -y python3.10 pip git tox
command: apt update && apt install -y python3.10 pip git
- run:
name: install pyspark and tox
command: pip install pyspark==3.5.0 tox
- run:
name: start connect server
command: |
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/spark/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def open(cls, connection: Connection) -> Connection:
handle = SessionConnectionWrapper(
Connection(
conn_method=creds.method,
conn_url=conn_url,
conn_url="localhost",
server_side_parameters=creds.server_side_parameters,
)
)
Expand Down

0 comments on commit f251090

Please sign in to comment.