We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a98d549 commit 75ccfeaCopy full SHA for 75ccfea
Jenkinsfile
@@ -20,6 +20,7 @@ pipeline {
20
sudo apt install python3 make libsasl2-dev libldap2-dev libssl-dev tesseract-ocr-all -y
21
curl -sSL https://install.python-poetry.org | python3 -
22
export PATH=/var/lib/jenkins/.local/bin:$PATH
23
+ pip install psycopg2-binary
24
poetry env use python3.10
25
poetry install
26
poetry add \"psycopg2-binary==2.8.6\"
@@ -32,8 +33,10 @@ pipeline {
32
33
stage('Tests') {
34
steps {
35
sh '''
36
+ cd frontend
37
yarn test:ci
38
yarn build
39
+ cd ..
40
make backend-test
41
'''
42
}
0 commit comments