Skip to content

Commit

Permalink
test: fixing py tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Nov 16, 2023
1 parent 6efc7ec commit ac18c8f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 22 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/prepare_environment.sh

This file was deleted.

18 changes: 8 additions & 10 deletions .github/workflows/python2-3-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name != 'push'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: '3.9'
Expand All @@ -27,20 +27,18 @@ jobs:
- 3.9

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2

- uses: actions/checkout@v2
- name: Prepare environment
run: .github/workflows/prepare_environment.sh ${{ matrix.python_version }}
- uses: actions/checkout@v4
- name: prepare environment
run: |
conda config --set add_pip_as_python_dependency false
conda create -c conda-forge -c free -n python_${{ matrix.python_version }} python=${{ matrix.python_version }}
- name: Run pylint
run: |
. "${CONDA}/bin/activate" test-env
. "${CONDA}/bin/activate" db12
pylint -E src/db12/ tests/
- name: Run pytest
run: |
. "${CONDA}/bin/activate" test-env
. "${CONDA}/bin/activate" db12
pytest tests
2 changes: 1 addition & 1 deletion src/db12/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def single_dirac_benchmark(iterations_num=1, measured_copies=None, correction=Tr

it_1 += 1

cput = sum(end[:4]) - sum(start[:4])
cput = sum(end[:4]) - sum(start[:4]) # pylint: disable=used-before-assignment
wall = end[4] - start[4]

if not cput:
Expand Down

0 comments on commit ac18c8f

Please sign in to comment.