Skip to content

Commit

Permalink
try it last
Browse files Browse the repository at this point in the history
  • Loading branch information
stress-tess committed Oct 16, 2024
1 parent 889330e commit e0dbd86
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 7 deletions.
52 changes: 51 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,59 @@
filterwarnings =
ignore:Version mismatch between client .*
testpaths =
tests/array_api/array_creation.py
tests/array_api/array_manipulation.py
tests/array_api/binary_ops.py
tests/array_api/indexing.py
tests/array_api/searching_functions.py
tests/array_api/set_functions.py
tests/array_api/sorting.py
tests/array_api/stats_functions.py
tests/array_api/util_functions.py
tests/alignment_test.py
tests/bigint_agg_test.py
tests/bitops_test.py
tests/categorical_test.py
tests/check.py
tests/client_dtypes_test.py
tests/client_test.py
tests/coargsort_test.py
tests/dataframe_test.py
tests/datetime_test.py
tests/extrema_test.py
tests/groupby_test.py
tests/indexing_test.py
tests/index_test.py
tests/io_test.py
tests/io_util_test.py
tests/join_test.py
tests/logger_test.py
tests/message_test.py
tests/numpy/dtypes_test.py
tests/numpy/manipulation_functions_test.py
tests/numpy/numeric_test.py
tests/numpy/numpy_test.py
tests/numpy/random_test.py
tests/operator_test.py
tests/pdarray_creation_test.py
tests/pdarrayclass_test.py
tests/regex_test.py
tests/scipy/scipy_test.py
tests/security_test.py
tests/segarray_test.py
tests/series_test.py
tests/setops_test.py
tests/sort_test.py
tests/sparse_test.py
tests/stats_test.py
tests/string_test.py
tests/symbol_table_test.py
tests/testing/asserters_test.py
tests/util_test.py
tests/where_test.py


# run client test last to avoid late disconnect issue
tests/client_test.py
norecursedirs =
.git
dist
Expand Down
2 changes: 0 additions & 2 deletions tests/client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,4 @@ def test_client_nd_unimplemented_error(self):
cm.match(err_msg) # Asserts the error msg matches the expected value

def test_fake_assert(self):
# import time
# time.sleep(3)
assert True == True
2 changes: 0 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ def startup_teardown():
def manage_connection():
import arkouda as ak

import time
time.sleep(3)
try:
ak.connect(server=pytest.server, port=pytest.port, timeout=pytest.timeout)
pytest.max_rank = get_max_array_rank()
Expand Down
2 changes: 0 additions & 2 deletions tests/numpy/dtypes_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
class TestDTypes:

def test_resolve_scalar_dtype(self):
# import time
# time.sleep(3)
for b in True, False:
assert "bool" == dtypes.resolve_scalar_dtype(b)

Expand Down

0 comments on commit e0dbd86

Please sign in to comment.