mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 08:24:37 +00:00
15 lines
556 B
Bash
Executable File
15 lines
556 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
python3 -m venv deploy-chatmail/venv
|
|
deploy-chatmail/venv/bin/pip install pyinfra pytest
|
|
deploy-chatmail/venv/bin/pip install -e deploy-chatmail
|
|
deploy-chatmail/venv/bin/pip install -e chatmaild
|
|
|
|
python3 -m venv chatmaild/venv
|
|
sudo apt install -y dovecot-core && sudo systemctl disable --now dovecot
|
|
chatmaild/venv/bin/pip install --upgrade pytest build 'setuptools>=68'
|
|
chatmaild/venv/bin/pip install -e chatmaild
|
|
|
|
python3 -m venv online-tests/venv
|
|
online-tests/venv/bin/pip install pytest pytest-timeout pdbpp deltachat pytest-benchmark
|