Skip to content

Commit 60f5b8d

Browse files
committed
Removed timing files
1 parent 9f81156 commit 60f5b8d

4 files changed

Lines changed: 8 additions & 38 deletions

File tree

bin/get_timing.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

bin/run_get_timing.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

test.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
#!/bin/sh
22

33
echo "Testing Numba JIT Compiled Functions"
4-
py.test --capture=sys -s tests/test_stump.py tests/test_stumped.py
4+
#py.test --capture=sys -s tests/test_stump.py tests/test_stumped.py
5+
py.test --capture=sys -s tests/test_stumped.py
56

67
echo "Disabling Numba JIT Compiled Functions"
78
export NUMBA_DISABLE_JIT=1
89

910
echo "Testing Python Functions"
1011
SITE_PACKAGES_DIR=`pip show matrix_profile | grep Location | awk '{print $2}'`
11-
py.test --cov=$SITE_PACKAGES_DIR/matrix_profile --cov-report term-missing tests/ --capture=sys -s
12+
#py.test --cov=$SITE_PACKAGES_DIR/matrix_profile --cov-report term-missing tests/ --capture=sys -s
13+
14+
echo "Cleaning Up"
15+
rm -rf dask-worker-space

tests/test_stumped.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def replace_inf(x, value=0):
5757
@pytest.mark.filterwarnings("ignore:numpy.dtype size changed")
5858
@pytest.mark.filterwarnings("ignore:numpy.ufunc size changed")
5959
@pytest.mark.filterwarnings("ignore:numpy.ndarray size changed")
60+
@pytest.mark.filterwarnings("ignore:\\s+Port 8787 is already in use:UserWarning")
6061
@pytest.mark.parametrize("T_A, T_B", test_data)
6162
def test_stumped_self_join(T_A, T_B, dask_client):
6263
m = 3
@@ -70,6 +71,7 @@ def test_stumped_self_join(T_A, T_B, dask_client):
7071
@pytest.mark.filterwarnings("ignore:numpy.dtype size changed")
7172
@pytest.mark.filterwarnings("ignore:numpy.ufunc size changed")
7273
@pytest.mark.filterwarnings("ignore:numpy.ndarray size changed")
74+
@pytest.mark.filterwarnings("ignore:\\s+Port 8787 is already in use:UserWarning")
7375
@pytest.mark.parametrize("T_A, T_B", test_data)
7476
def test_stumped_A_B_join(T_A, T_B, dask_client):
7577
m = 3

0 commit comments

Comments
 (0)