diff --git a/tests/facial/test_api_facial_activity.py b/tests/facial/test_api_facial_activity.py index ed491552..1f83f99c 100644 --- a/tests/facial/test_api_facial_activity.py +++ b/tests/facial/test_api_facial_activity.py @@ -37,6 +37,3 @@ class FacialTest: assert_allclose(df_act.mean(), res.mean(), rtol=0.35, atol=1e-8) assert_allclose(df_act.std(), res.std(), rtol=0.35, atol=1e-8) - - def test_dummy_facial(self): - assert True diff --git a/tests/movement/test_api_movement.py b/tests/movement/test_api_movement.py index c53cbca9..e1c9a27a 100644 --- a/tests/movement/test_api_movement.py +++ b/tests/movement/test_api_movement.py @@ -81,6 +81,3 @@ class MovementTest: res = processing_movement.get_vocal_tremor() assert_allclose(actual_mean, res.mean(), rtol=0.1, atol=1e-8) - - def test_dummy_movement(self): - assert True diff --git a/tests/speech/test_api_speech.py b/tests/speech/test_api_speech.py index ceb39bf1..59f02e44 100644 --- a/tests/speech/test_api_speech.py +++ b/tests/speech/test_api_speech.py @@ -5,9 +5,6 @@ from pytest import mark @mark.non_docker @mark.speech class SpeechTest: - def test_dummy_3(self): - assert True - def test_get_transcribe(self, processing_speech_mp4, processing_speech_wav): actual_totaltime = 87.978685 len_words_count = 57 diff --git a/tests/verbal_acoustics/test_api_acoustics.py b/tests/verbal_acoustics/test_api_acoustics.py index 4eb9e0b9..6c5e0ebc 100644 --- a/tests/verbal_acoustics/test_api_acoustics.py +++ b/tests/verbal_acoustics/test_api_acoustics.py @@ -175,9 +175,3 @@ class AcousticTest: assert_allclose(res_mp4.std(), actual_std, rtol=0.1, atol=1e-8) assert_allclose(res_wav.std(), actual_std, rtol=0.1, atol=1e-8) - - def test_dummy_1(self): - assert True - - def test_dummy_2(self): - assert True