Skip to content

Commit

Permalink
Merge pull request #5 from cnheider/master
Browse files Browse the repository at this point in the history
Add Cloudpickle
  • Loading branch information
cnheider committed Apr 1, 2019
2 parents 161a942 + f86366f commit 4755334
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
@@ -1,4 +1,5 @@
numpy==1.16.2
six==1.12.0
sorcery==0.1.0
pytest==4.3.1
pytest==4.3.1
cloudpickle
6 changes: 4 additions & 2 deletions tests/test_pqp.py
Expand Up @@ -40,7 +40,6 @@ def test_integration_func():
print(a)


@pytest.mark.slow
def test_lambda_func():
task = lambda x: x

Expand All @@ -49,7 +48,6 @@ def test_lambda_func():
print(a)


# @pytest.mark.slow
def test_integration_except():
task = Exc()

Expand All @@ -73,3 +71,7 @@ def test_integration_except_ctx():
print(a)

assert exc_info.type is NotImplementedError


if __name__ == "__main__":
test_lambda_func()

0 comments on commit 4755334

Please sign in to comment.