Skip to content

Commit

Permalink
Merge pull request #1278 from golemfactory/km/goth-config-overrides
Browse files Browse the repository at this point in the history
Fix scope for config overrides in goth tests
  • Loading branch information
kmazurek authored and maaktweluit committed May 24, 2021
1 parent d7053ad commit 60ed666
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion goth_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def log_dir() -> Path:
return log_dir


@pytest.fixture(scope="session")
@pytest.fixture(scope="function")
def config_overrides(request) -> List[Override]:
"""Fixture parsing --config-override params passed to the test invocation."""
overrides: List[str] = request.config.option.config_override or []
Expand Down
4 changes: 2 additions & 2 deletions goth_tests/helpers/activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

wasi_task_package: str = (
"hash://sha3:d5e31b2eed628572a5898bf8c34447644bfc4b5130cfc1e4f10aeaa1:"
"http://3.249.139.167:8000/rust-wasi-tutorial.zip"
"http://yacn2.dev.golem.network:8000/rust-wasi-tutorial.zip"
)

vm_task_package: str = (
"hash:sha3:9a3b5d67b0b27746283cb5f287c13eab1beaa12d92a9f536b747c7ae:"
"http://3.249.139.167:8000/local-image-c76719083b.gvmi"
"http://yacn2.dev.golem.network:8000/local-image-c76719083b.gvmi"
)


Expand Down

0 comments on commit 60ed666

Please sign in to comment.