Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: CI

on: [push, pull_request]

env:
FORCE_COLOR: 1

jobs:
package:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ profile = black

[tool:pytest]
addopts = -vvv --cov-report=term-missing --cov=elastic_transport
asyncio_default_fixture_loop_scope = "function"

[coverage:report]
omit =
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ async def perform_request(self, *args, **kwargs):


@pytest.fixture(scope="session", params=[True, False])
@pytest.mark.usefixtures("httpbin_node_config")
def httpbin_cert_fingerprint(request) -> str:
"""Gets the SHA256 fingerprint of the certificate for 'httpbin.org'"""
sock = socket.create_connection(("httpbin.org", 443))
Expand Down
Loading