Skip to content

Commit

Permalink
Merge pull request #3 from 4Catalyzer/remove_pdb
Browse files Browse the repository at this point in the history
remove pdb requirement in tests
  • Loading branch information
cancan101 authored Jul 1, 2017
2 parents 02b4354 + e4ea319 commit 5694b46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions analytic_wfm/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import numpy as np
import peakdetect
import unittest
import pdb


#generate time axis for 5 cycles @ 50 Hz
linspace_standard = np.linspace(0, 0.10, 1000)
Expand Down Expand Up @@ -639,4 +639,4 @@ def test_zero_crossings(self):

suites_list = [unittest.TestLoader().loadTestsFromTestCase(test_class) for test_class in tests_to_run]
big_suite = unittest.TestSuite(suites_list)
unittest.TextTestRunner(verbosity=2).run(big_suite)
unittest.TextTestRunner(verbosity=2).run(big_suite)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
description='peak detection algorithms',
packages=find_packages(),
install_requires=['numpy', 'scipy'],
tests_require=['matplotlib', 'pdb'],
tests_require=['matplotlib'],
)

0 comments on commit 5694b46

Please sign in to comment.