Skip to content

Commit ec0d09d

Browse files
authored
Merge pull request #12 from lnussbaum/f8
F8
2 parents 20e2474 + bebf623 commit ec0d09d

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Lint
99
steps:
1010
- name: Check out source repository
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Set up Python environment
1313
uses: actions/setup-python@v4
1414
with:

tests/test_incus_cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import subprocess
21
from unittest.mock import patch
32
from incant.incus_cli import IncusCLI
43
from incant.reporter import Reporter

tests/test_provision_manager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
from unittest.mock import Mock, call, patch
1+
from unittest.mock import Mock, call
22

33
import pytest
44

5-
from incant.exceptions import IncusCommandError
65
from incant.provisioning_manager import ProvisionManager
76
from incant.reporter import Reporter
87

tests/test_ssh_provisioner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from unittest.mock import Mock, call
1+
from unittest.mock import Mock
22
import pytest
33
from incant.provisioners.ssh_server import SSHServer
44
from incant.exceptions import IncusCommandError

0 commit comments

Comments
 (0)