Fix install #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unitary | |
on: | |
pull_request: | |
push: # all | |
jobs: | |
unitary: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ "3.12" ] | |
name: "unit tests: python ${{ matrix.python-version }}" | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install Requirements | |
run: | | |
pip install -r dev-requirements.txt | |
pip install . | |
- name: Run Unit Tests | |
env: | |
PYTHONPATH: ${{ github.workspace }} | |
# pass internals to pytest-cov, since we are testing a pytest plugin. | |
# See https://github.com/pytest-dev/pytest-cov/blob/2c9f2170/docs/plugins.rst | |
COV_CORE_SOURCE: boa_zksync | |
COV_CORE_CONFIG: .coveragerc | |
COV_CORE_DATAFILE: .coverage.eager | |
run: >- | |
pytest | |
--cov=boa_zksync | |
--cov-append | |
--cov-report term-missing:skip-covered | |
--cov-fail-under=70 | |
-nauto | |
tests |