From 7402035714e94b8c1755df6a05203d8d53848d66 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 17 Sep 2018 17:09:24 +0100 Subject: [PATCH] Rename lint command --- .circleci/config.yml | 2 +- Pipfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5b7c4a8..1b1366b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,5 +15,5 @@ jobs: key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }} paths: - "/home/circleci/.local/share/virtualenvs" - - run: pipenv run test + - run: pipenv run lint - run: pipenv run check diff --git a/Pipfile b/Pipfile index 0d6fdbc..7b1c966 100644 --- a/Pipfile +++ b/Pipfile @@ -15,4 +15,4 @@ python_version = "3.7" [scripts] deploy = "sudo ansible-playbook -i hosts dotfiles.yml" check = "ansible-playbook -i hosts dotfiles.yml --syntax-check" -test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml" +lint = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"