Skip to content

Commit 6c4b227

Browse files
Merge branch 'master' of github.com:SyntaxArc/ArchiPy
# Conflicts: # .github/workflows/tests.yml
2 parents 934cfe5 + ff1bec7 commit 6c4b227

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.13"]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v5

features/scenario_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def cleanup(self):
4545
try:
4646
# Try to run async cleanup if we're in an async context
4747
try:
48-
loop = asyncio.get_running_loop()
48+
asyncio.get_running_loop()
4949
# If we have a running loop, create a task
5050
asyncio.create_task(self.async_cleanup())
5151
except RuntimeError:

features/test_helpers.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@
44
using current_task() for scoping, which can cause issues in behave tests.
55
"""
66

7-
import asyncio
8-
import functools
9-
import logging
10-
11-
from behave.runner import Context
12-
137
from archipy.models.entities import BaseEntity
148

159

0 commit comments

Comments
 (0)