Skip to content

Commit

Permalink
continue debugging workflow 27
Browse files Browse the repository at this point in the history
  • Loading branch information
nick1udwig committed Sep 11, 2024
1 parent fdabb78 commit 6c5c8ec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions code/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ setup_packages = [
setup_scripts = []
test_package_paths = ["mfa_fe_demo/test/mfa_fe_demo_test"]
test_scripts = [
{ path = "mfa_fe_demo/curl-endpoint.sh", args = "" },
"mfa_fe_demo/curl-endpoint.sh",
]
timeout_secs = 5
fakechain_router = 8545
Expand Down Expand Up @@ -132,7 +132,7 @@ setup_packages = [
{ path = "ws_client", run = false }
]
setup_scripts = [
{ path = "ws_client/requirements.sh && ws_client/ws_server.py", args = "" }
"ws_client/requirements.sh && ws_client/ws_server.py",
]
test_package_paths = ["ws_client/test/ws_client_test"]
test_scripts = []
Expand All @@ -154,7 +154,7 @@ setup_packages = [
setup_scripts = []
test_package_paths = []
test_scripts = [
{ path = "ws_server/requirements.sh && ws_server/ws_client.py", args = "" }
"ws_server/requirements.sh && ws_server/ws_client.py",
]
timeout_secs = 5
fakechain_router = 8545
Expand All @@ -174,7 +174,7 @@ setup_packages = [
setup_scripts = []
test_package_paths = []
test_scripts = [
{ path = "ws_server_with_reply/requirements.sh && ws_server_with_reply/ws_client.py", args = "" }
"ws_server_with_reply/requirements.sh && ws_server_with_reply/ws_client.py",
]
timeout_secs = 5
fakechain_router = 8545
Expand Down
2 changes: 1 addition & 1 deletion code/ws_client/test/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ setup_packages = [
{ path = "..", run = false }
]
setup_scripts = [
{ path = "../requirements.sh && ../ws_server.py", args = "" }
"../requirements.sh && ../ws_server.py",
]
test_package_paths = ["ws_client_test"]
test_scripts = []
Expand Down
2 changes: 1 addition & 1 deletion code/ws_server/test/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ setup_packages = [
setup_scripts = []
test_package_paths = []
test_scripts = [
{ path = "../requirements.sh && ../ws_client.py", args = "" }
"../requirements.sh && ../ws_client.py",
]
timeout_secs = 5
fakechain_router = 8545
Expand Down
2 changes: 1 addition & 1 deletion code/ws_server_with_reply/test/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ setup_packages = [
setup_scripts = []
test_package_paths = []
test_scripts = [
{ path = "../requirements.sh && ../ws_client.py", args = "" }
"../requirements.sh && ../ws_client.py",
]
timeout_secs = 5
fakechain_router = 8545
Expand Down

0 comments on commit 6c5c8ec

Please sign in to comment.