Skip to content

Commit 3bfa89d

Browse files
cclaussgithub-actions
and
github-actions
authored
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>
1 parent 267a8b7 commit 3bfa89d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/build.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ jobs:
2222
python -m pip install --upgrade pip setuptools six wheel
2323
python -m pip install pytest-cov -r requirements.txt
2424
- name: Run tests
25-
# See: #6591 for re-enabling tests on Python v3.11
25+
# TODO: #8818 Re-enable quantum tests
2626
run: pytest
27-
--ignore=computer_vision/cnn_classification.py
28-
--ignore=machine_learning/lstm/lstm_prediction.py
29-
--ignore=quantum/
27+
--ignore=quantum/bb84.py
28+
--ignore=quantum/q_fourier_transform.py
3029
--ignore=project_euler/
3130
--ignore=scripts/validate_solutions.py
3231
--cov-report=term-missing:skip-covered

DIRECTORY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
* Arrays
168168
* [Permutations](data_structures/arrays/permutations.py)
169169
* [Prefix Sum](data_structures/arrays/prefix_sum.py)
170-
* [Product Sum Array](data_structures/arrays/product_sum.py)
170+
* [Product Sum](data_structures/arrays/product_sum.py)
171171
* Binary Tree
172172
* [Avl Tree](data_structures/binary_tree/avl_tree.py)
173173
* [Basic Binary Tree](data_structures/binary_tree/basic_binary_tree.py)

0 commit comments

Comments
 (0)