如何在circle.yml中运行flake8

时间:2015-04-06 09:58:35

标签: python-2.7 circleci pyflakes flake8

构建circle ci服务器时出现以下错误。

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

2 个答案:

答案 0 :(得分:3)

你可以在requirements.txt中添加flake8并添加flake8命令作为你的circleci配置中的一个步骤。首先,您可以使用circleci样板代码,因此最终结果将是这样的。

# 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 :(得分:1)

  1. 确保flake8文件中包含requirements.txt
  2. circle.yml文件中包含以下内容:

    test:
      override:
        - flake8 ./
    
  3. 您可以根据需要配置此flake8命令,例如flake8 ./ --max-line-length=100