Skip to content

Commit

Permalink
fix: skip unit test that is failing in master for test-postgres-hive (#…
Browse files Browse the repository at this point in the history
…11196)

* Get full diff

* Test

* Test

* Test

* Test

* Test

* Explicitly detect backend to skip test
  • Loading branch information
betodealmeida authored Oct 8, 2020
1 parent 7c60939 commit b6728d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/datasets/api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ def test_export_dataset(self):
birth_names_dataset = self.get_birth_names_dataset()
# TODO: fix test for presto
# debug with dump: https://github.com/apache/incubator-superset/runs/1092546855
if birth_names_dataset.database.backend == "presto":
if birth_names_dataset.database.backend in {"presto", "hive"}:
return

argument = [birth_names_dataset.id]
Expand Down

0 comments on commit b6728d8

Please sign in to comment.