Skip to content

Commit

Permalink
add test to check source uses staging api
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloPardoGarcia committed Sep 18, 2024
1 parent 257d15f commit 77fcdd4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/glassflow/integration_tests/pipeline_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
from glassflow import errors


def test_using_staging_server(source, sink):
assert source.glassflow_config.server_url == "https://staging.api.glassflow.dev/v1"
assert sink.glassflow_config.server_url == "https://staging.api.glassflow.dev/v1"


def test_pipeline_data_source_validate_credentials_ok(source):
try:
source.validate_credentials()
Expand Down

0 comments on commit 77fcdd4

Please sign in to comment.