-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (65 loc) · 1.78 KB
/
tests.yaml
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
67
name: ETL Pipeline Tests (Pull Request)
on:
pull_request:
types: [opened, synchronize]
# paths:
# - 'api/**'
# - 'managers/**'
# - 'mappings/**'
# - 'model/**'
# - 'processes/**'
# - 'services/**'
# - 'tests/**'
# - 'utils/**'
# - 'dev-requirements.txt'
# - 'requirements.txt'
# - 'main.py'
# - 'Makefile'
jobs:
test:
runs-on: ubuntu-latest
env:
IS_CI: "true"
AWS_ACCESS: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
ENVIRONMENT: local
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
sudo apt-get install -y gcc-c++
python -m pip install --upgrade pip wheel
pip install -r dev-requirements.txt
pip install -r requirements.txt
- name: Run unit tests
run: |
make unit
- name: Start Docker containers
run: |
docker compose up -d
- name: Wait for docker containers to be ready
run: |
echo "Waiting for docker container..."
sleep 90
- name: Run functional tests
run: |
make functional
- name: Run integration tests
run: |
make integration
- name: Stop Docker containers
if: always()
run: |
docker compose down