Skip to content

Commit 89feb9a

Browse files
Move tests into a directory (#658)
1 parent b22a166 commit 89feb9a

8 files changed

+7
-7
lines changed

.github/workflows/build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -392,49 +392,49 @@ jobs:
392392
run: |
393393
docker logs stellar -f &
394394
echo "supervisorctl tail -f stellar-core" | docker exec -i stellar sh &
395-
go run test_core.go
395+
go run tests/test_core.go
396396
curl http://localhost:11626/info
397397
- name: Run horizon up test
398398
if: ${{ matrix.horizon }}
399399
run: |
400400
docker logs stellar -f &
401401
echo "supervisorctl tail -f horizon" | docker exec -i stellar sh &
402-
go run test_horizon_up.go
402+
go run tests/test_horizon_up.go
403403
curl http://localhost:8000
404404
- name: Run horizon core up test
405405
if: ${{ matrix.horizon && matrix.network != 'pubnet' }}
406406
run: |
407407
docker logs stellar -f &
408408
echo "supervisorctl tail -f horizon" | docker exec -i stellar sh &
409-
go run test_horizon_core_up.go
409+
go run tests/test_horizon_core_up.go
410410
curl http://localhost:8000
411411
- name: Run horizon ingesting test
412412
if: ${{ matrix.horizon && matrix.network != 'pubnet' }}
413413
run: |
414414
docker logs stellar -f &
415415
echo "supervisorctl tail -f stellar-core" | docker exec -i stellar sh &
416416
echo "supervisorctl tail -f horizon" | docker exec -i stellar sh &
417-
go run test_horizon_ingesting.go
417+
go run tests/test_horizon_ingesting.go
418418
curl http://localhost:8000
419419
- name: Run friendbot test
420420
if: ${{ matrix.horizon && matrix.network == 'local' }}
421421
run: |
422422
docker logs stellar -f &
423423
echo "supervisorctl tail -f friendbot" | docker exec -i stellar sh &
424424
echo "supervisorctl tail -f horizon" | docker exec -i stellar sh &
425-
go run test_friendbot.go
425+
go run tests/test_friendbot.go
426426
- name: Run stellar rpc up test
427427
if: ${{ matrix.rpc }}
428428
run: |
429429
docker logs stellar -f &
430430
echo "supervisorctl tail -f stellar-rpc" | docker exec -i stellar sh &
431-
go run test_stellar_rpc_up.go
431+
go run tests/test_stellar_rpc_up.go
432432
- name: Run stellar rpc healthy test
433433
if: ${{ matrix.rpc && matrix.network != 'pubnet' }}
434434
run: |
435435
docker logs stellar -f &
436436
echo "supervisorctl tail -f stellar-rpc" | docker exec -i stellar sh &
437-
go run test_stellar_rpc_healthy.go
437+
go run tests/test_stellar_rpc_healthy.go
438438
- name: Prepare Test Logs
439439
if: always()
440440
run: sudo chmod -R a+r logs

test_core.go tests/test_core.go

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)