Skip to content

Commit

Permalink
Merge branch 'master' of github.com:quantmind/pulsar
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Dec 13, 2016
2 parents 7060bb9 + c6fc209 commit fe395d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install:
build: off

test_script:
- "%WITH_COMPILER% %PYTHON%/python setup.py test --sequential"
- "%WITH_COMPILER% %PYTHON%/python setup.py test -q"

notifications:
- provider: Email
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_pid.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from pulsar.utils.system import platform


@unittest.skipUnless(platform.type != 'win', 'This fails in windows')
class TestPidfile(ActorTestMixin, unittest.TestCase):
concurrency = 'process'

Expand Down Expand Up @@ -34,7 +35,6 @@ async def test_create_pid(self):
p.unlink()
self.assertFalse(os.path.exists(p.fname))

@unittest.skipUnless(platform.type != 'win', 'This fails in windows')
def test_stale_pid(self):
p = Pidfile()
p.create(798797)
Expand Down

0 comments on commit fe395d4

Please sign in to comment.