Skip to content

Commit ca842b4

Browse files
cclaussgithub-actions
and
github-actions
authored
It is OK to test ./scripts (TheAlgorithms#5290)
* It is OK to test ./scripts * updating DIRECTORY.md * Update build.yml Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 618f9ca commit ca842b4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
python -m pip install mypy pytest-cov -r requirements.txt
2424
- run: mypy --install-types --non-interactive .
2525
- name: Run tests
26-
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
26+
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/validate_solutions.py --cov-report=term-missing:skip-covered --cov=. .
2727
- if: ${{ success() }}
2828
run: scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md

Diff for: DIRECTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@
264264
* [Sum Of Subset](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/sum_of_subset.py)
265265

266266
## Electronics
267+
* [Carrier Concentration](https://github.com/TheAlgorithms/Python/blob/master/electronics/carrier_concentration.py)
267268
* [Electric Power](https://github.com/TheAlgorithms/Python/blob/master/electronics/electric_power.py)
268269
* [Ohms Law](https://github.com/TheAlgorithms/Python/blob/master/electronics/ohms_law.py)
269270

@@ -346,6 +347,9 @@
346347
* [Test Min Spanning Tree Kruskal](https://github.com/TheAlgorithms/Python/blob/master/graphs/tests/test_min_spanning_tree_kruskal.py)
347348
* [Test Min Spanning Tree Prim](https://github.com/TheAlgorithms/Python/blob/master/graphs/tests/test_min_spanning_tree_prim.py)
348349

350+
## Greedy Methods
351+
* [Optimal Merge Pattern](https://github.com/TheAlgorithms/Python/blob/master/greedy_methods/optimal_merge_pattern.py)
352+
349353
## Hashes
350354
* [Adler32](https://github.com/TheAlgorithms/Python/blob/master/hashes/adler32.py)
351355
* [Chaos Machine](https://github.com/TheAlgorithms/Python/blob/master/hashes/chaos_machine.py)
@@ -436,6 +440,7 @@
436440
* [Euclidean Distance](https://github.com/TheAlgorithms/Python/blob/master/maths/euclidean_distance.py)
437441
* [Euclidean Gcd](https://github.com/TheAlgorithms/Python/blob/master/maths/euclidean_gcd.py)
438442
* [Euler Method](https://github.com/TheAlgorithms/Python/blob/master/maths/euler_method.py)
443+
* [Euler Modified](https://github.com/TheAlgorithms/Python/blob/master/maths/euler_modified.py)
439444
* [Eulers Totient](https://github.com/TheAlgorithms/Python/blob/master/maths/eulers_totient.py)
440445
* [Extended Euclidean Algorithm](https://github.com/TheAlgorithms/Python/blob/master/maths/extended_euclidean_algorithm.py)
441446
* [Factorial Iterative](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_iterative.py)

0 commit comments

Comments
 (0)