Skip to content

Commit

Permalink
test: use boa provider instead of foundry (#118)
Browse files Browse the repository at this point in the history
Co-authored-by: antazoey <[email protected]>
  • Loading branch information
antazoey and antazoey authored Jan 10, 2025
1 parent 22decc1 commit 33ac142
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: foundry-rs/foundry-toolchain@v1
- uses: ApeWorX/github-action@v3
with:
python-version: "3.11"
Expand All @@ -61,7 +60,7 @@ jobs:
with:
name: ape-build-folder
path: .build/
- run: pip install .
- run: pip install .[test]
- run: ape test -s

js-test:
Expand Down
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ authors = [{ name = "ApeWorX LTD", email = "[email protected]" }]
license = { text = "Apache 2.0" }
readme = "README.md"
requires-python = ">=3.10,<4"

dependencies = ["eth-ape>=0.8.24,<1", "pydantic>=2.7,<3"]

[project.optional-dependencies]
Expand All @@ -23,7 +22,7 @@ lint = [
# NOTE: Be able to lint our silverback add-ons
"apepay[bot]",
]
test = ["ape-foundry"]
test = ["ape-titanoboa>=0.8.0.a1"]
dev = ["apepay[bot,lint,test]"]

[tool.setuptools.packages.find]
Expand All @@ -39,17 +38,17 @@ apepay = ["manifest.json", "py.typed"]
name = "ApePay"

plugins = [
{ name = "arbitrum" },
{ name = "optimism" },
{ name = "foundry" },
{ name = "vyper" },
{ name = "arbitrum" },
{ name = "optimism" },
{ name = "titanoboa" },
{ name = "vyper" },
]

[tool.ape.compile]
output_extra = ["ABI"]

[tool.ape.ethereum.local]
default_provider = "foundry"
default_provider = "boa"

[tool.ape.deployments.ethereum]
[[tool.ape.deployments.ethereum.sepolia]]
Expand Down

0 comments on commit 33ac142

Please sign in to comment.