Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Feb 4, 2020
1 parent dbf88d8 commit c812c60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
fail-fast: false
matrix:
syslog-version: [3.25.1,master]
splunk-version: [7.2,7.3,8.0,edge]
#splunk-version: [7.2,7.3,8.0,edge]
splunk-version: [7.3,8.0]

steps:
- name: Checkout private tools
Expand Down
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def splunk_external(request):
@pytest.fixture(scope="session")
def sc4s_docker(request, docker_services, docker_ip):
ports = { 514: docker_services.port_for("sc4s", 514) }
for x in range(5000, 5050):
for x in range(4999, 5050):
ports.update({ x: docker_services.port_for("splunk", 8089)})

return docker_ip, ports
Expand All @@ -182,7 +182,7 @@ def sc4s_docker(request, docker_services, docker_ip):
@pytest.fixture(scope="session")
def sc4s_external(request):
ports = {514: 514}
for x in range(5000, 5050):
for x in range(4999, 5050):
ports.update({x: x})

return request.config.getoption('sc4s_host'), ports
Expand Down

0 comments on commit c812c60

Please sign in to comment.