@@ -30,14 +30,19 @@ jobs:
30
30
composer install --dev
31
31
- name : Run acceptance tests
32
32
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/
39
44
- name : Expose acceptance tests reports
40
45
uses : actions/upload-artifact@v2
41
46
with :
42
47
name : acceptance-test-reports
43
- path : ./tests/features /reports
48
+ path : ./tests/Acceptance /reports
0 commit comments