Skip to content

Commit 0df67f6

Browse files
fix: forked networks now not considered staging (#155)
* fix: forked networks now not considered staging * release: 0.3.4b3 pre-release
1 parent 0436867 commit 0df67f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

moccasin/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def pytest_configure(config):
1818
def pytest_collection_modifyitems(config, items):
1919
moccasin_config = get_or_initialize_config()
2020
active_network = moccasin_config.get_active_network()
21-
if active_network.live_or_staging:
21+
if active_network.live_or_staging and not active_network.is_fork:
2222
skip_non_staging = pytest.mark.skip(reason="Not a staging test")
2323
for item in items:
2424
if "staging" not in item.keywords:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "moccasin"
3-
version = "0.3.4b2"
3+
version = "0.3.4b3"
44
description = "Pythonic smart contract development framework using Titanoboa"
55
authors = [
66
{ name = "PatrickAlphac", email = "[email protected]" },

0 commit comments

Comments
 (0)