Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: fixing py tests
Browse files Browse the repository at this point in the history
fstagni committed Nov 16, 2023

Verified

This commit was signed with the committer’s verified signature.
kushti Alexander Chepurnoy
1 parent 6efc7ec commit b25b1b2
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
@@ -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'
@@ -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 -n db12 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
@@ -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:

0 comments on commit b25b1b2

Please sign in to comment.