Skip to content

Commit 07c49c0

Browse files
committed
Update tests for Debian/Amazon
1 parent 31047cd commit 07c49c0

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

.github/workflows/amazonlinux2.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
uses: actions/checkout@v2
2828
- name: Prepare tests
2929
run: pip install -r requirements.txt
30-
- name: Run tests
31-
run: |
32-
molecule test
33-
AUTH_STATE=enabled molecule test
34-
molecule test -s cluster
35-
AUTH_STATE=enabled molecule test -s cluster
30+
- name: Run default test
31+
run: molecule test
32+
- name: Run default test with enabled authentication
33+
run: AUTH_STATE=enabled molecule test
34+
- name: Run cluster test
35+
run: molecule test -s cluster
36+
- name: Run cluster test with enabled authentication
37+
run: AUTH_STATE=enabled molecule test -s cluster

.github/workflows/debian.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ jobs:
3333
uses: actions/checkout@v2
3434
- name: Prepare tests
3535
run: pip install -r requirements.txt
36-
- name: Run tests
37-
run: |
38-
molecule test
39-
AUTH_STATE=enabled molecule test
40-
molecule test -s cluster
41-
AUTH_STATE=enabled molecule test -s cluster
36+
- name: Run default test
37+
run: molecule test
38+
- name: Run default test with enabled authentication
39+
run: AUTH_STATE=enabled molecule test
40+
- name: Run cluster test
41+
run: molecule test -s cluster
42+
- name: Run cluster test with enabled authentication
43+
run: AUTH_STATE=enabled molecule test -s cluster

0 commit comments

Comments
 (0)