Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DomPeliniAerospike committed Oct 17, 2024
1 parent 05c8b1f commit ad50ccf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ jobs:
npm i --save-dev @types/chai;
tsc;
cd ..;
npm install;
docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike/aerospike-server
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
npm install ..;
tsc;
cd ..;
npm run run ts-test -- --h 127.0.0.1 --port 3000 ;
npm run run ts-test -- --h 0.0.0.0 --port 3000 ;
test-ce:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
npm install ..;
tsc;
cd ..;
npm run ts-test -- --h 127.0.0.1 --port 3000;
npm run ts-test -- --h 0.0.0.0 --port 3000;
test-lowest-supported-server:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
working-directory: ts-test

- name: Run tests
run: npm run ts-test -- --h 127.0.0.1 --port 3000 --t 20000
run: npm run ts-test -- --h 0.0.0.0 --port 3000 --t 20000

test-ee:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
working-directory: ts-test

- name: Run tests
run: npm run ts-test -- --h 127.0.0.1 --port 3000 --U admin --P admin --t 40000 test/admin.js
run: npm run ts-test -- --h 0.0.0.0 --port 3000 --U admin --P admin --t 40000 test/admin.js

test-valgrind:
runs-on: ubuntu-latest
Expand Down

0 comments on commit ad50ccf

Please sign in to comment.