diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 16de4e6f89..0e149bcb82 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -605,7 +605,7 @@ jobs: CPU=1 RANGEIFY=1 python3 -m pytest -n auto --durations 20 \ -k "not test_symbolic_arange_sym_step and not test_threefry_doesnt_use_long" \ test/test_tiny.py test/test_rangeify.py test/test_ops.py test/test_tensor_variable.py \ - test/test_outerworld_range.py test/test_sample.py test/test_randomness.py test/test_tensor_data.py + test/test_outerworld_range.py test/test_sample.py test/test_randomness.py - name: Test CPU=1 RANGEIFY=2 run: CPU=1 RANGEIFY=2 python3 -m pytest -n auto test/test_tiny.py test/test_rangeify.py test/test_ops.py --durations 20 - name: Test LLVM=1 RANGEIFY=1 (slow tests) diff --git a/test/test_dtype.py b/test/test_dtype.py index a9b3c9417e..a5d28e8362 100644 --- a/test/test_dtype.py +++ b/test/test_dtype.py @@ -297,7 +297,6 @@ class TestUint8DType(TestDType): def test_uint8_to_int8_overflow(self): _test_op(lambda: Tensor([255, 254, 253, 252], dtype=dtypes.uint8).cast(dtypes.int8), dtypes.int8, [-1, -2, -3, -4]) -@unittest.skipIf(Device.DEFAULT == "WEBGL", "No bitcast on WebGL") class TestBitCast(unittest.TestCase): @given(strat.sampled_from(dtype_ints + dtype_floats), strat.sampled_from(dtype_ints + dtype_floats)) def test_shape_change_bitcast(self, dt1, dt2): diff --git a/test/test_tensor_data.py b/test/unit/test_tensor_data.py similarity index 100% rename from test/test_tensor_data.py rename to test/unit/test_tensor_data.py