diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index b05a20a..a2d1b61 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -14,3 +14,4 @@ jobs: uses: ./.github/workflows/publish-packages.yml with: upload_to_test: false + branch: "main" diff --git a/changelog.rst b/changelog.rst index 3296f8c..869a7af 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,3 +1,11 @@ ========= Changelog ========= + +Version 0.1.0 +============= + +[0.1.0] -- 2024-01-06 +--------------------- + +First official release. diff --git a/tests/data/test_logging.py b/tests/data/test_logging.py index 197e3e1..4a0db2e 100644 --- a/tests/data/test_logging.py +++ b/tests/data/test_logging.py @@ -15,7 +15,7 @@ def not_null(s): - return not s.startswith("\x00") + return "\x00" not in s def context_dict(values=None): @@ -77,7 +77,7 @@ def orderly_log_content( for c in draw(keys) } ) - return draw(st.lists(contexts, max_size=15)) + return draw(st.lists(contexts, max_size=10)) def populate_log(logger, log_contents): @@ -119,7 +119,7 @@ def check_logger_values(df, log_contents): @given(orderly_log_content()) -@settings(deadline=500) # Allow up to 0.5 seconds per test. +@settings(deadline=2_000) # Allow up to 2 seconds per test. def test_to_dataframe(log_contents): logger = du.data.logging.Logger() num_empty = populate_log(logger, log_contents)