Archives mensuelles : octobre 2022

gitlab pipelines with python application

Define a stage for creating a docker image for the python application and running python tests on a container of that image This approach is more verbose than directly executing python tests without creating a docker image for the application. … Continuer la lecture

Publié dans Non classé | Laisser un commentaire

How to run tests in python according to the library

Unittest versus pytest Some differences between them: 1) unittest is standard, it is a built-in module while pytest is a third party module. 2) The syntax of the 2 api is distinct while pytest is able to work with tests … Continuer la lecture

Publié dans Non classé | Laisser un commentaire