-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (39 loc) · 1.12 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: couchdbkit test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [ "3.9" ]
django-version: [ "3.2.*", "4.2.*" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
pip install django==${{ matrix.django-version }}
pip install -r requirements_dev.txt
python setup.py install
- name: start up couch
run: |
docker run -d --name couchdb-cluster -p 5984:5984 \
-v $(pwd)/data:/usr/src/couchdb/dev/lib/ \
klaemo/couchdb:2.0-dev \
--with-admin-party-please --with-haproxy -n 1
- name: wait for couch to start
run: |
while:
do
curl http://localhost:5984/${db_name} -sv 2>&1 | grep '^< HTTP/.* 200 OK' && break || continue
sleep 1
done
- name: run tests
run: |
python setup.py test