Questions tagged [pybuilder]

PyBuilder is a multi-purpose software build tool with a strong focus on Python.

PyBuilder provides a powerful and extensible way for building and testing software and mainly targets Python applications.

It allows you to use Python to write build files and is highly pluggable.

Some of the capabilities are:

  • execution of unit and integration tests
  • generation of distutils script setup.py
  • analysis of the code coverage
  • execution and result interpretation of analysis tools, such as flake8

PyBuilder is based on the concept of dependency based programming but also comes along with powerful plugin mechanism that allows the construction of build life cycles similar to those known from other famous build tools like Apache Maven.

48 questions
0
votes
1 answer

pybuilder and pytest: cannot import source code when running tests

so i have a project: |- src |-main |-python |-data_merger |- common |- constans |- controller |- resources |- rest |-tests …
Vincent Claes
  • 3,960
  • 3
  • 44
  • 62
0
votes
1 answer

Pybuilder integration tests on a Django project

I'm trying to write integration tests with pybuilder on a Django web application, but I can't seem to make it work. An example error which occurs (from within the Django application): django.core.exceptions.ImproperlyConfigured: Requested setting…
morgoth84
  • 1,070
  • 2
  • 11
  • 25
0
votes
1 answer

PyBuilder broken for Swig-Python generated wrapper project

I have a Python wrapper (to a C lib) generated by Swig. Have unittest run happy within PyDev. Project structure follow PyBuilder suggested setup: |-src |-main |-python |-A.py |-_A.so …
1 2 3
4