Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.98 KB

Running tests.md

File metadata and controls

23 lines (15 loc) · 1.98 KB

Introduction

All test running is assumed from preparing and setting up document, see readme for preparing docker and the basics on Pytest and other environmental requirements.

Environment

All commands are setup through the Makefile, but can be run on the generated API images or locally utilising more Pytest options

Command Description
make build-tests Builds Docker and then runs all the tests, slower and makes an assumption there are changes needed for Docker
make tests Takes the already built image and runs all the tests, slightly faster way of running all the tests
make run-test-reuse-db or pytest --reuse-db -vv <File(s)::test(s)> Configure specific test(s) to be run quicker, utilising the already existing generated and seeded test database, cutting out the setup step
make test or pytest <File(s)::test(s)> Configure specific test(s) to be run and will prepare and seed data needed for Django integration tests

The test coverage is measured on Pull requests using https://app.codecov.io/gh/uktrade/data-hub-api

App.codecov.io

The tests, as well as code linters and code quality checks, are done through a mixture of circleci steps and git actions where failures and output details can be seen in detail.

CircleCI