Skip to content

Commit

Permalink
fix: forked networks now not considered staging (#155)
Browse files Browse the repository at this point in the history
* fix: forked networks now not considered staging

* release: 0.3.4b3 pre-release
  • Loading branch information
PatrickAlphaC authored Nov 16, 2024
1 parent 0436867 commit 0df67f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moccasin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def pytest_configure(config):
def pytest_collection_modifyitems(config, items):
moccasin_config = get_or_initialize_config()
active_network = moccasin_config.get_active_network()
if active_network.live_or_staging:
if active_network.live_or_staging and not active_network.is_fork:
skip_non_staging = pytest.mark.skip(reason="Not a staging test")
for item in items:
if "staging" not in item.keywords:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "moccasin"
version = "0.3.4b2"
version = "0.3.4b3"
description = "Pythonic smart contract development framework using Titanoboa"
authors = [
{ name = "PatrickAlphac", email = "[email protected]" },
Expand Down

0 comments on commit 0df67f6

Please sign in to comment.