Skip to content

Commit

Permalink
fix: disable not working tests (influxdata/influxdb#19234)
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Aug 7, 2020
1 parent fc53c39 commit 27621d3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion tests/test_BucketsApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def test_create_delete_bucket(self):
assert self.buckets_api.find_bucket_by_id(my_bucket.id)
assert "bucket not found" in e.value.body

@pytest.mark.skip(reason="https://github.com/influxdata/influxdb/issues/14900")
def test_find_by_name(self):
my_org = self.find_my_org()

Expand Down
1 change: 1 addition & 0 deletions tests/test_TasksApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ def test_member(self):
members = self.tasks_api.get_members(task_id=task.id)
self.assertEqual(len(members), 0)

@pytest.mark.skip(reason="https://github.com/influxdata/influxdb/issues/19234")
def test_owner(self):
task = self.tasks_api.create_task_cron(self.generate_name("it_task"), TASK_FLUX, "0 2 * * *",
self.organization.id)
Expand Down

0 comments on commit 27621d3

Please sign in to comment.