Skip to content

Commit

Permalink
triggering workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Dec 6, 2024
1 parent 6e3ab46 commit 9c99c58
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/nighly_fuzzing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: keth-NIGHTLY-FUZZING
on:
schedule:
- cron: 20 0 * * *
push:
pull_request:
workflow_dispatch: {}

permissions: read-all
Expand All @@ -29,6 +31,9 @@ jobs:
- name: Compile Solidity contracts
run: |
forge build
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Run tests
id: tests
continue-on-error: true # To send a notification if the tests fail
Expand Down
4 changes: 2 additions & 2 deletions cairo/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import pytest
import starkware.cairo.lang.instances as LAYOUTS
from dotenv import load_dotenv
from hypothesis import Phase, Verbosity, settings, HealthCheck
from hypothesis import HealthCheck, Phase, Verbosity, settings

from tests.utils.coverage import report_runs
from tests.utils.reporting import dump_coverage
Expand Down Expand Up @@ -57,7 +57,7 @@ def pytest_addoption(parser):
max_examples=1,
phases=[Phase.explicit, Phase.reuse, Phase.generate, Phase.target],
report_multiple_bugs=True,
suppress_health_check=[HealthCheck.too_slow]
suppress_health_check=[HealthCheck.too_slow],
)
settings.register_profile(
"ci",
Expand Down
4 changes: 3 additions & 1 deletion cairo/tests/ethereum/cancun/test_trie.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ def test_common_prefix_length_should_fail(
),
cairo_error(message="common_prefix_length"),
):
assert common_prefix_length(a, b) + 1 == cairo_run("common_prefix_length", a, b)
assert common_prefix_length(a, b) + 1 == cairo_run(
"common_prefix_length", a, b
)

@given(x=nibble, is_leaf=...)
def test_nibble_list_to_compact(self, cairo_run, x, is_leaf: bool):
Expand Down

0 comments on commit 9c99c58

Please sign in to comment.