mirror of
https://github.com/arnaucube/hermez-node.git
synced 2026-02-06 19:06:42 +01:00
Rm unused ETHCLIENT_DIAL_URL
This commit is contained in:
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
@@ -21,6 +21,5 @@ jobs:
|
||||
- name: Test
|
||||
env:
|
||||
POSTGRES_PASS: ${{ secrets.POSTGRES_PASS }}
|
||||
ETHCLIENT_DIAL_URL: ${{ secrets.ETHCLIENT_DIAL_URL }}
|
||||
GOARCH: ${{ matrix.goarch }}
|
||||
run: go test -p 1 ./...
|
||||
|
||||
@@ -13,14 +13,14 @@ POSTGRES_PASS=yourpasswordhere; sudo docker run --rm --name hermez-db-test -p 54
|
||||
- Then, run the tests with the password as env var
|
||||
|
||||
```
|
||||
POSTGRES_PASS=yourpasswordhere ETHCLIENT_DIAL_URL=yourethereumurlhere go test -p 1 ./...
|
||||
POSTGRES_PASS=yourpasswordhere go test -p 1 ./...
|
||||
```
|
||||
|
||||
NOTE: `-p 1` forces execution of package test in serial. Otherwise they may be
|
||||
executed in paralel and the test may find unexpected entries in the SQL
|
||||
databse because it's shared among all tests.
|
||||
|
||||
- There is an extra temporal option that allows to run the API server through the Go tests. This should be removed once the API can be properly initialized, with data from the synchronizer and so on. To use this, run `FAKE_SERVER=yes POSTGRES_PASS=yourpasswordhere ETHCLIENT_DIAL_URL=yourethereumurlhere go test -timeout 0 ./api -p 1 -count 1 -v`
|
||||
- There is an extra temporal option that allows to run the API server through the Go tests. This should be removed once the API can be properly initialized, with data from the synchronizer and so on. To use this, run `FAKE_SERVER=yes POSTGRES_PASS=yourpasswordhere go test -timeout 0 ./api -p 1 -count 1 -v`
|
||||
|
||||
## Lint
|
||||
|
||||
|
||||
Reference in New Issue
Block a user