blob: 73bc794ae2e72b9ae85bc949cfc62b506e057e79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
image: archlinux
sources:
- git@git.sr.ht:~yulqen/datamaps
packages:
- python
- python-pip
secrets:
- 590eb309-3589-4444-bcbe-81f7a29024a8
tasks:
- setup: |
mkdir -p /home/build/Documents/datamaps/output
mkdir -p /home/build/Documents/datamaps/input
- test: |
python -m venv /home/build/.venv
cd datamaps
/home/build/.venv/bin/pip install -e .
/home/build/.venv/bin/pip install pytest
/home/build/.venv/bin/pytest -q
|