We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a60f272 commit 1022071Copy full SHA for 1022071
.travis.yml
@@ -13,8 +13,7 @@ install:
13
- pip install coveralls
14
- python setup.py install
15
script:
16
- - nosetests
17
- - nosetests --with-coverage --cover-package=commpy
+ - nosetests -a '!slow' --with-coverage --cover-package=commpy
18
after_success:
19
- coveralls
20
commpy/channelcoding/tests/test_ldpc.py
@@ -6,9 +6,11 @@
6
from numpy.testing import assert_allclose
7
from commpy.channelcoding.ldpc import get_ldpc_code_params, ldpc_bp_decode
8
from commpy.utilities import hamming_dist
9
-
10
import os
11
+from nose.plugins.attrib import attr
12
+
+@attr('slow')
class TestLDPCCode(object):
@classmethod
0 commit comments