Skip to content

Commit

Permalink
Merge pull request #13 from pfernique/master
Browse files Browse the repository at this point in the history
Update tests
  • Loading branch information
pfernique committed Mar 14, 2017
2 parents 24f3519 + 0bef28f commit 8778850
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 8 additions & 4 deletions conda/python-statiskit_stl/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@ requirements:
- libboost
- python

test:
source_files:
- test/test_*.py
test:
requires:
- python-dev
imports:
- statiskit.stl
source_files:
- test/test_*.py
commands:
- nosetests test -x -s -v
- nosetests test -x -s -v -A 'level <= {{ environ.get('TEST_LEVEL', 3) }} and linux' [linux]
- nosetests test -x -s -v -A 'level <= {{ environ.get('TEST_LEVEL', 3) }} and osx' [osx]
- nosetests test -x -s -v -A 'level <= {{ environ.get('TEST_LEVEL', 3) }} and win' [win]
8 changes: 7 additions & 1 deletion test/test_unit_set.py → test/test_set.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import unittest
from statiskit import stl

import unittest
from nose.plugins.attrib import attr

@attr(linux=True,
osx=True,
win=True,
level=1)
class TestSet(unittest.TestCase):

def test___initialization(self):
Expand Down

0 comments on commit 8778850

Please sign in to comment.