linkedin / pygradle

Using Gradle to build Python projects
https://github.com/linkedin/pygradle
Apache License 2.0
586 stars 147 forks source link

How disable using VENV ??? #308

Open SupinePandora43 opened 5 years ago

SupinePandora43 commented 5 years ago

also how can i disable running tasks ":installTestRequirements", ":installBuildRequirements", ":installSetupRequirements"

petrabrunner commented 5 years ago

if you are still wondering: ad your 2nd question:

simply add (f.e.): tasks.installTestRequirements.enabled = false to the gradle script where you add the plugin. at least thats how I disabled the tasks I dont need.

SupinePandora43 commented 5 years ago

@petrabrunner thx