Skip to content

fixtures and tests start #2

fixtures and tests start

fixtures and tests start #2

Workflow file for this run

name: test_gauge
on:
pull_request:
paths:
- "tests/gauge/*.py"
- "contracts/LiquidityGauge.vy"
push:
paths:
- "tests/gauge/*.py"
- "contracts/LiquidityGauge.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
run: |
source .venv/bin/activate
pytest tests/gauge/ --pool-size=2 --pool-type=basic --token-types=plain --decimals=18,18 -n auto