mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 00:14:36 +00:00
17 lines
549 B
Bash
Executable File
17 lines
549 B
Bash
Executable File
#!/bin/sh
|
|
python3 -m venv chatmail-pyinfra/venv
|
|
chatmail-pyinfra/venv/bin/pip install pyinfra pytest
|
|
chatmail-pyinfra/venv/bin/pip install -e chatmail-pyinfra
|
|
chatmail-pyinfra/venv/bin/pip install -e doveauth
|
|
|
|
python3 -m venv doveauth/venv
|
|
doveauth/venv/bin/pip install pytest build
|
|
doveauth/venv/bin/pip install -e doveauth
|
|
|
|
python3 -m venv online-tests/venv
|
|
online-tests/venv/bin/pip install pytest pytest-timeout pdbpp deltachat
|
|
|
|
python3 -m venv filtermail/venv
|
|
filtermail/venv/bin/pip install build
|
|
filtermail/venv/bin/pip install -e filtermail
|