-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (57 loc) · 1.76 KB
/
integration-test.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
name: Integration test against news-search-api:main
on:
- push
jobs:
fixture-integration-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
name: Integration test with dummy ES data
steps:
# setup ES index
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- name: Run Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 8.8.2
security-enabled: false
- name: Elasticsearch is reachable
run: |
curl --verbose --show-error http://localhost:9200
# setup news-search-api server and dummy data
- name: Checkout news-search-api server
uses: actions/checkout@v4
with:
repository: mediacloud/news-search-api
path: news-search-api
- name: Install news-search-api server python dependencies
working-directory: news-search-api
run: |
pip install -e .[dev]
- name: Install fixtures
working-directory: news-search-api
run: |
python -m test.create_fixtures
- name: Run news-search-api server
working-directory: news-search-api
run: |
python api.py
# set up this code and run test
- name: Main checkout
uses: actions/checkout@v4
with:
path: main
- name: Install python dependencies
working-directory: main
run: |
pip install -e .[dev]
- name: Run integration test
working-directory: main
run: |
pytest waybacknews/tests/test_fixtures.py