From 9aec80bd38b36609f8158f72dd32e26c59e3bd85 Mon Sep 17 00:00:00 2001 From: Shing Chan Date: Thu, 16 Nov 2023 13:52:35 +0000 Subject: [PATCH] chore(install-dev.sh): download unit test data --- install-dev.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/install-dev.sh b/install-dev.sh index a9bda9d..96dda4c 100644 --- a/install-dev.sh +++ b/install-dev.sh @@ -13,5 +13,12 @@ pip install -e .[dev,docs] # install in edit mode # Download tiny sample data used for unit tests wget -P tests/data/ https://wearables-files.ndph.ox.ac.uk/files/data/samples/ax3/tiny-sample.cwa.gz -cp tests/data/tiny-sample.cwa.gz tests/data/tiny-sample1.cwa.gz # make copies for multiprocessing unit tests +# Copies for multiprocessing unit tests +cp tests/data/tiny-sample.cwa.gz tests/data/tiny-sample1.cwa.gz cp tests/data/tiny-sample.cwa.gz tests/data/tiny-sample2.cwa.gz +# Test data for unit tests +wget -P tests/data/ https://wearables-files.ndph.ox.ac.uk/files/actipy/tests/data/read.pkl.gz +wget -P tests/data/ https://wearables-files.ndph.ox.ac.uk/files/actipy/tests/data/lowpass.pkl.gz +wget -P tests/data/ https://wearables-files.ndph.ox.ac.uk/files/actipy/tests/data/calib.pkl.gz +wget -P tests/data/ https://wearables-files.ndph.ox.ac.uk/files/actipy/tests/data/nonwear.pkl.gz +wget -P tests/data/ https://wearables-files.ndph.ox.ac.uk/files/actipy/tests/data/resample.pkl.gz