Skip to content

Commit

Permalink
python 3.9 does not support match statements
Browse files Browse the repository at this point in the history
Signed-off-by: Tommy Hughes <[email protected]>
  • Loading branch information
tchughesiv committed Sep 9, 2024
1 parent da96f3d commit 5759bf5
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions sdk/python/tests/integration/offline_store/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,12 +323,6 @@ def test_e2e_validation_via_cli(environment, universal_data_sources):
assert p.returncode == 0, p.stderr.decode()

# invalid tags should fail
p = runner.run(
["tag", "project", store.project, "test?:wrong"],
cwd=local_repo.repo_path,
)
assert p.returncode == 1, p.stderr.decode()

p = runner.run(
["tag", "saved-dataset", saved_dataset.name, "test?:wrong"],
cwd=local_repo.repo_path,
Expand Down Expand Up @@ -365,12 +359,6 @@ def test_e2e_validation_via_cli(environment, universal_data_sources):
)
assert p.returncode == 0, p.stderr.decode()

p = runner.run(
["tag", "project", store.project, "test:tag"],
cwd=local_repo.repo_path,
)
assert p.returncode == 0, p.stderr.decode()

p = runner.run(
["tag", "validation-reference", reference.name, "test:tag"],
cwd=local_repo.repo_path,
Expand All @@ -390,12 +378,6 @@ def test_e2e_validation_via_cli(environment, universal_data_sources):
assert p.returncode == 0, p.stderr.decode()

# tag removal should succeed
p = runner.run(
["tag", "project", store.project, "test-"],
cwd=local_repo.repo_path,
)
assert p.returncode == 0, p.stderr.decode()

p = runner.run(
["tag", "saved-dataset", saved_dataset.name, "test-"],
cwd=local_repo.repo_path,
Expand Down

0 comments on commit 5759bf5

Please sign in to comment.