Skip to content
Merged

F8 #12

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
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Lint
steps:
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
Expand Down
1 change: 0 additions & 1 deletion tests/test_incus_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import subprocess
from unittest.mock import patch
from incant.incus_cli import IncusCLI
from incant.reporter import Reporter
Expand Down
3 changes: 1 addition & 2 deletions tests/test_provision_manager.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from unittest.mock import Mock, call, patch
from unittest.mock import Mock, call

import pytest

from incant.exceptions import IncusCommandError
from incant.provisioning_manager import ProvisionManager
from incant.reporter import Reporter

Expand Down
2 changes: 1 addition & 1 deletion tests/test_ssh_provisioner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from unittest.mock import Mock, call
from unittest.mock import Mock
import pytest
from incant.provisioners.ssh_server import SSHServer
from incant.exceptions import IncusCommandError
Expand Down