The way config.py checks for existence of config files works only for English speakers. Try the following after installing the relevant locale:
import locale
from invoke import task
locale.setlocale(locale.LC_ALL, 'fr_FR.utf8')
@task
def test(ctx):
pass
Then inv test crashes with FileNotFoundError: [Errno 2] Aucun fichier ou dossier de ce type: '/etc/invoke.yaml' and its French error message.
The way config.py checks for existence of config files works only for English speakers. Try the following after installing the relevant locale:
Then
inv testcrashes withFileNotFoundError: [Errno 2] Aucun fichier ou dossier de ce type: '/etc/invoke.yaml'and its French error message.