diff --git a/pyproject.toml b/pyproject.toml index 7a818c8f..3144501c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,8 +54,8 @@ dependencies = [ "types-mock", "types-requests", "types-setuptools", - "tableauserverclient==0.25", - "urllib3>=1.24.3,<2.0", + "tableauserverclient==0.31", + "urllib3", ] [project.optional-dependencies] test = [ diff --git a/tests/e2e/online_tests.py b/tests/e2e/online_tests.py index 05a9b6a9..6b502280 100644 --- a/tests/e2e/online_tests.py +++ b/tests/e2e/online_tests.py @@ -468,10 +468,10 @@ def test_list_sites(self): if not server_admin: pytest.skip("Must be server administrator to list sites") + result = True command = "listsites" try: _test_command([command]) except Exception as E: - print("yay") - result = True + result = False assert result