forked from aurelien.plancke/ScodocTestClient
9 lines
308 B
Bash
9 lines
308 B
Bash
|
#!/bin/bash
|
||
|
#Ce script lance en séquence les différents jeux de tests.
|
||
|
python3 01_creation_departement_test.py;
|
||
|
python3 02_creation_formation_test.py;
|
||
|
python3 03_etudiant_test.py;
|
||
|
python3 04_creation_absence_test.py;
|
||
|
python3 05_saisie_note_test.py;
|
||
|
python3 06_test_moyenne.py;
|
||
|
python3 07_test_admission.py
|