-
Notifications
You must be signed in to change notification settings - Fork 15
44 lines (37 loc) · 1 KB
/
test_factory.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
name: test_factory
on:
pull_request:
paths:
- "tests/test_factory.py"
- "contracts/CurveStableSwapFactoryNG.vy"
push:
paths:
- "tests/test_factory.py"
- "contracts/CurveStableSwapFactoryNG.vy"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WEB3_PROVIDER_URL: ${{ secrets.WEB3_PROVIDER_URL }}
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Compiler Installations
uses: actions/cache@v3
with:
path: |
~/.vvm
key: compiler-cache
- name: Setup Python 3.10.4
uses: actions/setup-python@v4
with:
python-version: 3.10.4
- name: Install Requirements
run: |
pip install poetry==1.5.1
poetry config virtualenvs.in-project true
poetry install --no-interaction
- name: Run Tests Basic
run: |
source .venv/bin/activate
pytest tests/test_factory.py --token-types=plain -n auto