wasp256
wasp256

Reputation: 6242

CircleCI run pylama/pycodestyle not terminating

I'm trying to use CircleCI to check if the codestyle guidlines have been applied correctly otherwise it should fail.

This is the config I have

  - run:
      name: Check codestyle guidlines
      command: |
        . venv/bin/activate
        pylama --options setup.cfg --ignore C901
        pycodestyle --config setup.cfg

But the task keeps running on forever. I don't know why!?

Upvotes: 0

Views: 108

Answers (1)

wasp256
wasp256

Reputation: 6242

I figured it out, had to exclude the vent/* directory in the setup.cfg since it's in the same directory as the actual application and it contains all libraries

Upvotes: 1

Related Questions