Skip to content

Commit 33e3863

Browse files
committed
skip hammer on Debian
1 parent e95165a commit 33e3863

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ jobs:
9292
run: |
9393
./foremanctl deploy --certificate-source=${{ matrix.certificate_source }} --foreman-initial-admin-password=changeme
9494
- name: Setup hammer
95+
if: contains(matrix.box, 'centos')
9596
run: |
9697
./foremanctl setup-hammer
9798
- name: Run tests

tests/hammer_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
def test_hammer_ping(server):
2+
if server.system_info.distribution == 'debian':
3+
pytest.xfail('Hammer is not properly set up on Debian yet')
24
hammer = server.run("hammer ping")
35
assert hammer.succeeded

0 commit comments

Comments
 (0)