forked from aiidateam/aiida-core
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (54 loc) · 1.65 KB
/
rabbitmq.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: rabbitmq
on:
push:
branches-ignore: [gh-pages]
pull_request:
branches-ignore: [gh-pages]
paths-ignore: ['docs/**']
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
rabbitmq: ['3.5', '3.6', '3.7', '3.8']
services:
postgres:
image: postgres:10
env:
POSTGRES_DB: test_django
POSTGRES_PASSWORD: ''
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
rabbitmq:
image: rabbitmq:${{ matrix.rabbitmq }}
ports:
- 5672:5672
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install system dependencies
run: |
sudo apt update
sudo apt install postgresql
- name: Upgrade pip
run: |
pip install --upgrade pip
pip --version
- name: Install aiida-core
run: |
pip install -r requirements/requirements-py-3.8.txt
pip install --no-deps -e .
pip freeze
- name: Run tests
run: pytest -sv -k 'requires_rmq'