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
1 change: 1 addition & 0 deletions tests/integration/test_live_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Skipped unless CYCLES_BASE_URL is set.
"""
import os

import pytest

pytestmark = pytest.mark.skipif(
Expand Down
5 changes: 2 additions & 3 deletions tests/test_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

from __future__ import annotations

import pathlib

import copy
import pathlib

import pytest
import yaml
Expand All @@ -20,7 +19,7 @@
# ---------------------------------------------------------------------------

def _load_spec() -> dict:
with open(SPEC_PATH) as f:
with open(SPEC_PATH, encoding="utf-8") as f:
return yaml.safe_load(f)


Expand Down
Loading