Skip to content

Commit 3bc41f4

Browse files
committed
Fix Acceptance tests
1 parent 487a646 commit 3bc41f4

21 files changed

+68
-4363
lines changed

.github/workflows/run-acceptance-tests.yml

+12-7
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,19 @@ jobs:
3030
composer install --dev
3131
- name: Run acceptance tests
3232
run: |
33-
mkdir -p tests/features/bootstrap/access/
34-
mkdir -p tests/features/bootstrap/utilities/
35-
mkdir -p tests/features/reports
36-
cp sdk-specifications/features/access/grant-token.feature tests/features/bootstrap/access/grant-an-access-token.feature
37-
cp sdk-specifications/features/utilities/time.feature tests/features/bootstrap/utilities/time.feature
38-
vendor/bin/behat -f junit -o tests/features/reports/
33+
mkdir -p tests/Acceptance/reports
34+
mkdir -p tests/Acceptance/Contracts/Access
35+
mkdir -p tests/Acceptance/Contracts/Publish
36+
mkdir -p tests/Acceptance/Contracts/Signal
37+
mkdir -p tests/Acceptance/Contracts/History
38+
39+
cp sdk-specifications/features/access/grant-token.feature tests/Acceptance/Contracts/Access/grant-token.feature
40+
cp sdk-specifications/features/publish/publish-to-space.feature tests/Acceptance/Contracts/Publish/publish-to-space.feature
41+
cp sdk-specifications/features/publish/signal-to-space.feature tests/Acceptance/Contracts/Signal/signal-to-space.feature
42+
cp sdk-specifications/features/history/history.feature tests/Acceptance/Contracts/History/history.feature
43+
vendor/bin/behat -f junit -o tests/Acceptance/reports/
3944
- name: Expose acceptance tests reports
4045
uses: actions/upload-artifact@v2
4146
with:
4247
name: acceptance-test-reports
43-
path: ./tests/features/reports
48+
path: ./tests/Acceptance/reports

acceptance.json

-37
This file was deleted.

0 commit comments

Comments
 (0)