mirror of
https://gitlab.com/LazyLibrarian/LazyLibrarian.git
synced 2026-02-06 10:47:15 +00:00
8 lines
321 B
Bash
Executable File
8 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
# Script called by gitlab CI engine during test phases
|
|
# Installs python modules required for LL and unit testing
|
|
|
|
# Minimal modules
|
|
python3 -m pip install charset_normalizer certifi idna pillow
|
|
# Build/testing modules
|
|
python3 -m pip install pytest mock pytest_order pytest-cov coverage pytest-profiling build |