Skip to content

Commit

Permalink
release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
machielg committed Nov 4, 2019
1 parent 5bb1b36 commit 7fc411f
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 58 deletions.
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ pybuilder = "*"
[packages]
hypothesis = "*"
sparkle-test = "*"
sparkle-session = {editable = true,path = "/Users/machiel/dev/workspace/spark/sparkle-session/target/dist/sparkle-session-1.0.0.dev"}
sparkle-session = "*"

[requires]
python_version = "3.6"

[pipenv]
allow_prereleases = true
allow_prereleases = false
121 changes: 67 additions & 54 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
easy to use Hypothesis strategies to generate dataframes.
"""
default_task = ["clean", "analyze", "publish"]
version = "1.0.0.dev"
version = "1.0.1"

url = "https://github.com/machielg/sparkle-hypothesis/"
license = "GPLv3+"
Expand Down
6 changes: 5 additions & 1 deletion src/main/python/sparkle_hypothesis/pyspark_profile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from hypothesis import settings, HealthCheck

settings.register_profile("pyspark", deadline=None, suppress_health_check=HealthCheck.all(), max_examples=10, print_blob=True)
settings.register_profile("pyspark",
deadline=None,
suppress_health_check=HealthCheck.all(),
max_examples=10,
print_blob=True)


# noinspection PyProtectedMember
Expand Down

0 comments on commit 7fc411f

Please sign in to comment.