Skip to content

Commit

Permalink
#55: Enable test for ws.all_users()
Browse files Browse the repository at this point in the history
  • Loading branch information
dgroup committed Jan 15, 2022
1 parent 6a090b1 commit 20d2e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ws.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


@pytest.mark.skipif(os.getenv("WS_INT_TESTS_DISABLED") is not None, reason="Integration tests are disabled")
@pytest.mark.skipif(os.getenv("WS_URL_ALL_USERS") is not None, reason="Environment variable 'WS_URL_ALL_USERS' is absent")
@pytest.mark.skipif(os.getenv("WS_URL_ALL_USERS") is None, reason="Environment variable 'WS_URL_ALL_USERS' is absent")
def test_users():
assert len(Ws().all_users()) > 20

Expand Down

0 comments on commit 20d2e29

Please sign in to comment.