Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.02 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.02 KB

My SF5 tests project

CI setup

Code Coverage

Des outils

Accéder à l'API en ligne de commande :

$ cd bin
$ ./api-example.sh -h

De la documentation

Plusieurs sujets :

À voir : tous les fichiers dans le répertoire doc

A makefile to rule them all...

To run all the services:

# Build all the Docker containers
$ make build

# Run the services
# - in dev environment 
$ make up
# - in test environment 
$ make up-test

# Create the database and load all the tests fixtures
$ make db

# Check coding standard
$ make cs

# Execute unit tests
$ make tests

# Execute Behat tests
$ make behat-tests