aknuds1
aknuds1

Reputation: 67997

How do I configure CircleCI to not install Python dependencies, via circle.yml?

My project which I build on CircleCI includes a requirements.txt file listing the Python dependencies to install through pip, but I do not want CircleCI to try to install these dependencies. How do I, via circle.yml, configure CircleCI to not try to install project dependencies?

Upvotes: 2

Views: 431

Answers (1)

aknuds1
aknuds1

Reputation: 67997

So far I have worked around the issue by adding a dummy command to dependencies.override in circle.yml, but it's not the most elegant solution...

dependencies:
  override:
    - echo "Just overriding CircleCI inferred dependency installation..."

Upvotes: 3

Related Questions