From e08e385c097d9a156cb478fdd784ea0b92cfd754 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 24 Oct 2024 14:56:30 -0400 Subject: [PATCH 1/3] bump versions --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9181d22900..f762e3312e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bbot" -version = "2.1.0" +version = "2.1.1" description = "OSINT automation for hackers." authors = [ "TheTechromancer", @@ -100,7 +100,7 @@ extend-exclude = "(test_step_1/test_manager_*)" [tool.poetry-dynamic-versioning] enable = true metadata = false -format-jinja = 'v2.1.0{% if branch == "dev" %}.{{ distance }}rc{% endif %}' +format-jinja = 'v2.1.1{% if branch == "dev" %}.{{ distance }}rc{% endif %}' [tool.poetry-dynamic-versioning.substitution] files = ["*/__init__.py"] From 17160e792c7a142bda03c0993b3064e40d9b7e21 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 24 Oct 2024 14:59:33 -0400 Subject: [PATCH 2/3] continue on error --- .github/workflows/distro_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/distro_tests.yml b/.github/workflows/distro_tests.yml index e9eac869a8..1d6ad2ffcc 100644 --- a/.github/workflows/distro_tests.yml +++ b/.github/workflows/distro_tests.yml @@ -61,3 +61,4 @@ jobs: poetry env use python3.11 poetry install poetry run pytest --reruns 2 -o timeout_func_only=true --timeout 1200 --disable-warnings --log-cli-level=DEBUG . + continue-on-error: true From 30320b615fb339e027224371e850351fa2c4a582 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 24 Oct 2024 17:16:44 -0400 Subject: [PATCH 3/3] don't continue on error --- .github/workflows/distro_tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/distro_tests.yml b/.github/workflows/distro_tests.yml index 1d6ad2ffcc..e9eac869a8 100644 --- a/.github/workflows/distro_tests.yml +++ b/.github/workflows/distro_tests.yml @@ -61,4 +61,3 @@ jobs: poetry env use python3.11 poetry install poetry run pytest --reruns 2 -o timeout_func_only=true --timeout 1200 --disable-warnings --log-cli-level=DEBUG . - continue-on-error: true