/ / Ako spustiť vločku8 v circle.yml - python-2.7, circleci, pyflakes, flake8

Ako spustiť vločku8 v circle.yml - python-2.7, circleci, pyflakes, flake8

Pri vytváraní servera ci kruh sa zobrazuje nasledujúca chyba.

bash: line 1: flake8: command not found flake8 app/ returned exit code 127

odpovede:

2 pre odpoveď č. 1

môžete pridať flake8 do svojich požiadaviek.txt a pridajte príkaz flake8 ako jeden z krokov v konfigurácii vašich kruhov. na začiatok môžete použiť kód kruhovej platne, takže konečný výsledok bude niečo také.

# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.5.3

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}

# run tests!
- run:
name: run linting and metrics
command: |
. venv/bin/activate
flake8 ./ tests --output-file test-reports
- store_artifacts:
path: test-reports
destination: test-reports

1 pre odpoveď č. 2
  1. Uisti sa flake8 je zahrnuté v a requirements.txt súboru.
  2. Zahrňte nasledujúce položky vo svojom circle.yml file:

    test:
    override:
    - flake8 ./
    

Tento príkaz flake8 môžete nakonfigurovať podľa vášho želania, napr flake8 ./ --max-line-length=100.