Skip to content

Commit

Permalink
tests: add arbitrum and optimism to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BlinkyStitt authored and fubuloubu committed Sep 19, 2023
1 parent fdecfb0 commit cbfc24a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
26 changes: 14 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,24 @@

extras_require = {
"test": [ # `test` GitHub Action jobs uses this
"pytest>=6.0", # Core testing package
"pytest-xdist", # multi-process runner
"pytest-cov", # Coverage analyzer plugin
"hypothesis>=6.2.0,<7.0", # Strategy-based fuzzer
"ape-polygon",
"ape-arbitrum",
"ape-bsc",
"ape-optimism",
"ape-polygon",
"hypothesis>=6.2.0,<7.0", # Strategy-based fuzzer
"pytest-cov", # Coverage analyzer plugin
"pytest-xdist", # multi-process runner
"pytest>=6.0", # Core testing package
],
"lint": [
"black>=23.3.0,<24", # auto-formatter and linter
"mypy>=0.991,<1", # Static type analyzer
"flake8>=6.0.0,<7", # Style linter
"isort>=5.10.1,<6", # Import sorting linter
"types-setuptools", # Needed due to mypy typeshed
"mdformat>=0.7.16", # Auto-formatter for markdown
"mdformat-gfm>=0.3.5", # Needed for formatting GitHub-flavored markdown
"mdformat-frontmatter>=0.4.1", # Needed for frontmatters-style headers in issue templates
"mdformat-gfm>=0.3.5", # Needed for formatting GitHub-flavored markdown
"mdformat>=0.7.16", # Auto-formatter for markdown
"mypy>=0.991,<1", # Static type analyzer
"types-setuptools", # Needed due to mypy typeshed
],
"doc": [
"Sphinx>=3.4.3,<4", # Documentation generator
Expand All @@ -29,15 +31,15 @@
"release": [ # `release` GitHub Action job uses this
"setuptools", # Installation tool
"setuptools-scm", # Installation tool
"wheel", # Packaging tool
"twine", # Package upload tool
"wheel", # Packaging tool
],
"dev": [
"IPython", # Console for interacting
"commitizen", # Manage commits and publishing releases
"ipdb", # Debugger (Must use `export PYTHONBREAKPOINT=ipdb.set_trace`)
"pre-commit", # Ensure that linters are run prior to commiting
"pytest-watch", # `ptw` test watcher/runner
"IPython", # Console for interacting
"ipdb", # Debugger (Must use `export PYTHONBREAKPOINT=ipdb.set_trace`)
],
}

Expand Down
4 changes: 2 additions & 2 deletions tests/test_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
@pytest.mark.parametrize(
"ecosystem,network",
[
# ("arbitrum", "mainnet"),
("arbitrum", "mainnet"),
("bsc", "mainnet"),
("ethereum", "goerli"),
("ethereum", "mainnet"),
# ("optimism", "mainnet"),
("optimism", "mainnet"),
("polygon", "mainnet"),
],
)
Expand Down

0 comments on commit cbfc24a

Please sign in to comment.