Skip to content

Commit

Permalink
Restore clean_organic_data.py content
Browse files Browse the repository at this point in the history
  • Loading branch information
gilderlane committed Oct 4, 2023
1 parent 8028bc8 commit dea35e8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion integration_tests/clean_organic_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,10 @@ def test_delete_organic_data():
"""
Delete organic boards from default client
"""
pass
all_boards, _ = Board.get_all()
for board in all_boards:
if board.id == DEFAULT_BOARD_ID:
continue
Board.delete(board_id=board.id)

assert len(Board.get_all()[0]) == 1

0 comments on commit dea35e8

Please sign in to comment.