Skip to content

Commit

Permalink
feat(SPV-896): adds taskfile for regression tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmkowalski committed Jul 22, 2024
1 parent 6bfcd97 commit 319c095
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions regression_tests/Taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3"

tasks:
default:
cmds:
- task -l

run_regression_tests:
desc: "running regression tests"
cmds:
- echo "running regression tests..."
- go test -tags=regression ./...
dir: .
env:
CLIENT_ONE_URL: "{{.CLIENT_ONE_URL}}"
CLIENT_TWO_URL: "{{.CLIENT_TWO_URL}}"
CLIENT_ONE_LEADER_XPRIV: "{{.CLIENT_ONE_LEADER_XPRIV}}"
CLIENT_TWO_LEADER_XPRIV: "{{.CLIENT_TWO_LEADER_XPRIV}}"

0 comments on commit 319c095

Please sign in to comment.