Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update pyproject.toml #206

Merged
merged 1 commit into from
Oct 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "halmos"
description = "Halmos: Symbolic Bounded Model Checker for Ethereum Smart Contracts Bytecode"
description = "A symbolic testing tool for EVM smart contracts"
readme = "README.md"
authors = [
{ name="a16z crypto" },
Expand Down Expand Up @@ -37,4 +37,4 @@ target-versions = ["py38", "py39", "py310", "py311"]

[tool.pytest.ini_options]
# TODO: re-add test_traces.py when we have a better way to support it in CI
addopts = "--ignore=tests/lib/solady/ext/woke --ignore=tests/test_traces.py"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I run into problems running pytest at the root because of this lib

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, #200 will be a nicer and longer term solution, but for now, we can go with this.

btw, i've made the change to ignore the entire tests/lib, because we may add other libraries there later that have their own pytest which we don't want to run.

addopts = "--ignore=tests/lib --ignore=tests/test_traces.py"