Skip to content

Commit 0fc1127

Browse files
committed
Update e2e tests CI
1 parent a7a9b53 commit 0fc1127

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

.github/workflows/integration-tests-events-rabbitmq.yml renamed to .github/workflows/e2e-tests.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Integration Tests
1+
name: End-to-End Tests
22

33
on: [ push, pull_request ]
44

@@ -10,23 +10,9 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
jobs:
13-
integration-tests:
13+
e2e-tests:
1414
runs-on: ubuntu-latest
1515

16-
services:
17-
rabbitmq:
18-
image: rabbitmq:3
19-
env:
20-
RABBITMQ_DEFAULT_USER: guest
21-
RABBITMQ_DEFAULT_PASS: guest
22-
ports:
23-
- 5672:5672
24-
options: >-
25-
--health-cmd "rabbitmqctl node_health_check"
26-
--health-interval 10s
27-
--health-timeout 5s
28-
--health-retries 5
29-
3016
steps:
3117
- name: Checkout code
3218
uses: actions/checkout@v6
@@ -48,11 +34,6 @@ jobs:
4834
- name: Set bitcoind environment variable
4935
run: echo "BITCOIND_EXE=$( pwd )/bin/bitcoind-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV"
5036

51-
- name: Run RabbitMQ integration tests
52-
run: cargo test --features integration-tests-events-rabbitmq --verbose --color=always -- --nocapture
53-
env:
54-
RUST_BACKTRACE: 1
55-
5637
- name: Run end-to-end tests
5738
run: cargo test --manifest-path e2e-tests/Cargo.toml --verbose --color=always -- --test-threads=4 --nocapture
5839
env:

0 commit comments

Comments
 (0)