Skip to content

Commit dc4049e

Browse files
cclaussgithub-actions
and
github-actions
authored
.travis.yml: Revert to using autoblack (TheAlgorithms#2033)
* .travis.yml: Revert to using autoblack Our autoblack GitHub Action will get us to black compliance without forcing each contributor to learn about, install, and use psf/black on every pull request. * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 025b1a6 commit dc4049e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cache: pip
66
before_install: pip install --upgrade pip setuptools six
77
install: pip install black flake8
88
before_script:
9-
- black --check .
9+
- black --check . || true
1010
- flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=120 --statistics --count .
1111
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
1212
- pip install -r requirements.txt # fast fail on black, flake8, validate_filenames

DIRECTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@
575575
* [Ternary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/ternary_search.py)
576576

577577
## Sorts
578+
* [Bead Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/bead_sort.py)
578579
* [Bitonic Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/bitonic_sort.py)
579580
* [Bogo Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/bogo_sort.py)
580581
* [Bubble Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py)

0 commit comments

Comments
 (0)