-
Notifications
You must be signed in to change notification settings - Fork 384
Closed
Labels
Milestone
Description
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):
passThen inv test crashes with FileNotFoundError: [Errno 2] Aucun fichier ou dossier de ce type: '/etc/invoke.yaml' and its French error message.