Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
ben
/
earwigbot
miroir de
https://github.com/earwig/earwigbot
Suivre
1
Ajouter aux favoris
1
Bifurcation
0
Code
Versions
4
Activité
Parcourir la source
Bump ruff
tags/v0.4
Ben Kurtovic
il y a 2 mois
Parent
2936ffbf5f
révision
ada55eb4b1
4 fichiers modifiés
avec
6 ajouts
et
1 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+1
-1
.pre-commit-config.yaml
+3
-0
pyproject.toml
+1
-0
tests/conftest.py
+1
-0
tests/test_calc.py
+ 1
- 1
.pre-commit-config.yaml
Voir le fichier
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.
5.4
rev: v0.
6.2
hooks:
- id: ruff
args: [--fix]
+ 3
- 0
pyproject.toml
Voir le fichier
@@ -69,3 +69,6 @@ target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP"]
ignore = ["F403"]
[tool.ruff.lint.isort]
known-first-party = ["conftest"]
+ 1
- 0
tests/conftest.py
Voir le fichier
@@ -42,6 +42,7 @@ from collections.abc import Iterable, Sequence
from threading import Lock
import pytest
from earwigbot.bot import Bot
from earwigbot.commands import Command
from earwigbot.config import BotConfig
+ 1
- 0
tests/test_calc.py
Voir le fichier
@@ -19,6 +19,7 @@
# SOFTWARE.
import pytest
from conftest import MockCommand
from earwigbot.commands.calc import Calc
Écrire
Aperçu
Chargement…
Annuler
Enregistrer