Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: pre-commit autoupdate #169

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ ci:
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v3.0.3
rev: v4.0.0-alpha.8
hooks:
- id: prettier
additional_dependencies:
- prettier
- prettier-plugin-toml
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.4.0
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -29,11 +29,11 @@ repos:
- id: check-merge-conflict
- id: debug-statements
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 24.8.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8.git
rev: 6.1.0
rev: 7.1.1
hooks:
- id: flake8
language_version: python3
Expand All @@ -42,19 +42,19 @@ repos:
- flake8-docstrings>=1.6.0
- flake8-pytest-style>=1.6.0
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.1
rev: v1.11.2
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
# args: [--strict]
- repo: https://github.com/pycqa/pylint
rev: v3.0.0a7
rev: v3.2.7
hooks:
- id: pylint
additional_dependencies:
- pytest
- repo: https://github.com/jazzband/pip-tools
rev: 7.3.0
rev: 7.4.1
hooks:
- id: pip-compile
entry: pip-compile --resolver=backtracking -q --no-annotate --output-file=requirements.txt pyproject.toml --extra test --strip-extras
Expand Down
8 changes: 2 additions & 6 deletions src/vagrant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,7 @@ def up(
provision_arg = (
None
if provision is None
else "--provision"
if provision
else "--no-provision"
else "--provision" if provision else "--no-provision"
)

args = [
Expand Down Expand Up @@ -409,9 +407,7 @@ def reload(
provision_arg = (
None
if provision is None
else "--provision"
if provision
else "--no-provision"
else "--provision" if provision else "--no-provision"
)

args = ["reload", vm_name, provision_arg, prov_with_arg, providers_arg]
Expand Down
1 change: 1 addition & 0 deletions src/vagrant/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
It also removes some of the boilerplate involved in writing tests that leverage
vagrant boxes.
"""

from typing import Dict, List, Optional
from unittest import TestCase
from vagrant import Vagrant, stderr_cm
Expand Down
1 change: 1 addition & 0 deletions tests/test_vagrant_test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
There are a handful of classes to try to provide multiple different varying samples of possible setups
"""

import os
from vagrant import Vagrant
from vagrant.test import VagrantTestCase
Expand Down
Loading