Skip to content

Commit

Permalink
removed server.hostname validator for resolve rhel 8.10 formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarkhatavkar committed Jun 6, 2024
1 parent f19655d commit 599fbe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
run: |
# To skip vault login in pull request checks
export VAULT_SECRET_ID_FOR_DYNACONF=somesecret
export ROBOTTELO_SERVER__HOSTNAME=""
pytest -sv tests/robottelo/
- name: Make Docs
Expand Down
2 changes: 1 addition & 1 deletion robottelo/config/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
),
],
server=[
Validator('server.hostname', default=''),
Validator('server.hostname', is_type_of=str),
Validator('server.hostnames', must_exist=True, is_type_of=list),
Validator('server.version.release', must_exist=True),
Validator('server.version.source', must_exist=True),
Expand Down

0 comments on commit 599fbe5

Please sign in to comment.