GitHub Actions build: Add more tests (#8837)

* GitHub Actions build: Add more tests

Re-enable some tests that were disabled in #6591.
Fixes #8818

* updating DIRECTORY.md

* TODO: Re-enable quantum tests

* fails: pytest quantum/bb84.py quantum/q_fourier_transform.py

---------

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
Christian Clauss 2023-06-25 18:28:01 +02:00 committed by GitHub
parent 267a8b72f9
commit 3bfa89dacf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -22,11 +22,10 @@ jobs:
python -m pip install --upgrade pip setuptools six wheel python -m pip install --upgrade pip setuptools six wheel
python -m pip install pytest-cov -r requirements.txt python -m pip install pytest-cov -r requirements.txt
- name: Run tests - name: Run tests
# See: #6591 for re-enabling tests on Python v3.11 # TODO: #8818 Re-enable quantum tests
run: pytest run: pytest
--ignore=computer_vision/cnn_classification.py --ignore=quantum/bb84.py
--ignore=machine_learning/lstm/lstm_prediction.py --ignore=quantum/q_fourier_transform.py
--ignore=quantum/
--ignore=project_euler/ --ignore=project_euler/
--ignore=scripts/validate_solutions.py --ignore=scripts/validate_solutions.py
--cov-report=term-missing:skip-covered --cov-report=term-missing:skip-covered

View File

@ -167,7 +167,7 @@
* Arrays * Arrays
* [Permutations](data_structures/arrays/permutations.py) * [Permutations](data_structures/arrays/permutations.py)
* [Prefix Sum](data_structures/arrays/prefix_sum.py) * [Prefix Sum](data_structures/arrays/prefix_sum.py)
* [Product Sum Array](data_structures/arrays/product_sum.py) * [Product Sum](data_structures/arrays/product_sum.py)
* Binary Tree * Binary Tree
* [Avl Tree](data_structures/binary_tree/avl_tree.py) * [Avl Tree](data_structures/binary_tree/avl_tree.py)
* [Basic Binary Tree](data_structures/binary_tree/basic_binary_tree.py) * [Basic Binary Tree](data_structures/binary_tree/basic_binary_tree.py)