From fdf1e6c031b927e7f5303bf26f83f487013ccc87 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Sun, 3 Sep 2023 17:00:18 +0800 Subject: [PATCH] cleanup --- .gitea/workflows/tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 384cc62..72b0287 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -36,22 +36,19 @@ jobs: git config --global url."https://$TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/" - name: Build package run: go build . - - name: Run server + - name: Run server and tests env: DATABASE_TYPE: postgres LEVELDB_PATH: ./fixture/chaindata LEVELDB_ANCIENT: ./fixture/chaindata/ancient LOG_FILE_PATH: ./server-log timeout-minutes: 30 + # Run a sanity test against the fixture data + # Complete integration tests are TODO run: | ./eth-statediff-service --config ./test/ci-config.toml serve & sleep 10 - # # Run a sanity test against the fixture data - # # Complete integration tests are TODO - # - name: Run test - # timeout-minutes: 30 - # run: | ./scripts/request-range.sh 0 32 || (E=$?; cat ./server-log; exit $E) until grep "Finished processing block 32" ./server-log