We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e95165a commit 33e3863Copy full SHA for 33e3863
.github/workflows/test.yml
@@ -92,6 +92,7 @@ jobs:
92
run: |
93
./foremanctl deploy --certificate-source=${{ matrix.certificate_source }} --foreman-initial-admin-password=changeme
94
- name: Setup hammer
95
+ if: contains(matrix.box, 'centos')
96
97
./foremanctl setup-hammer
98
- name: Run tests
tests/hammer_test.py
@@ -1,3 +1,5 @@
1
def test_hammer_ping(server):
2
+ if server.system_info.distribution == 'debian':
3
+ pytest.xfail('Hammer is not properly set up on Debian yet')
4
hammer = server.run("hammer ping")
5
assert hammer.succeeded
0 commit comments