Skip to content

Commit

Permalink
Closes #2688: operator_test.py conversion for new test framework
Browse files Browse the repository at this point in the history
This PR (closes #2688) converts `operator_test.py` to new test framework
  • Loading branch information
Pierce Hayes committed Aug 18, 2023
1 parent 6d1454b commit e9cef36
Show file tree
Hide file tree
Showing 2 changed files with 805 additions and 0 deletions.
1 change: 1 addition & 0 deletions PROTO_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def pytest_configure(config):
pytest.port = int(os.getenv("ARKOUDA_SERVER_PORT", 5555))
pytest.server = os.getenv("ARKOUDA_SERVER_HOST", "localhost")
pytest.timeout = int(os.getenv("ARKOUDA_CLIENT_TIMEOUT", 5))
pytest.verbose = bool(os.getenv("ARKOUDA_VERBOSE", False))
pytest.nl = _get_test_locales(config)
pytest.seed = None if config.getoption("seed") == "" else eval(config.getoption("seed"))
pytest.prob_size = [eval(x) for x in config.getoption("size").split(",")]
Expand Down
Loading

0 comments on commit e9cef36

Please sign in to comment.