@@ -392,49 +392,49 @@ jobs:
392
392
run : |
393
393
docker logs stellar -f &
394
394
echo "supervisorctl tail -f stellar-core" | docker exec -i stellar sh &
395
- go run test_core.go
395
+ go run tests/ test_core.go
396
396
curl http://localhost:11626/info
397
397
- name : Run horizon up test
398
398
if : ${{ matrix.horizon }}
399
399
run : |
400
400
docker logs stellar -f &
401
401
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
403
403
curl http://localhost:8000
404
404
- name : Run horizon core up test
405
405
if : ${{ matrix.horizon && matrix.network != 'pubnet' }}
406
406
run : |
407
407
docker logs stellar -f &
408
408
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
410
410
curl http://localhost:8000
411
411
- name : Run horizon ingesting test
412
412
if : ${{ matrix.horizon && matrix.network != 'pubnet' }}
413
413
run : |
414
414
docker logs stellar -f &
415
415
echo "supervisorctl tail -f stellar-core" | docker exec -i stellar sh &
416
416
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
418
418
curl http://localhost:8000
419
419
- name : Run friendbot test
420
420
if : ${{ matrix.horizon && matrix.network == 'local' }}
421
421
run : |
422
422
docker logs stellar -f &
423
423
echo "supervisorctl tail -f friendbot" | docker exec -i stellar sh &
424
424
echo "supervisorctl tail -f horizon" | docker exec -i stellar sh &
425
- go run test_friendbot.go
425
+ go run tests/ test_friendbot.go
426
426
- name : Run stellar rpc up test
427
427
if : ${{ matrix.rpc }}
428
428
run : |
429
429
docker logs stellar -f &
430
430
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
432
432
- name : Run stellar rpc healthy test
433
433
if : ${{ matrix.rpc && matrix.network != 'pubnet' }}
434
434
run : |
435
435
docker logs stellar -f &
436
436
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
438
438
- name : Prepare Test Logs
439
439
if : always()
440
440
run : sudo chmod -R a+r logs
0 commit comments