Skip to content

Commit

Permalink
BugFix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
helviojunior committed May 3, 2024
1 parent f37c054 commit 6993d5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ jobs:
python -m pip install -r requirements.txt -r tests/requirements-test.txt
- name: Remove tests folder (Windows)
if: contains(matrix.os, 'windows')
if: "contains(matrix.os, 'windows')"
run: |
Remove-Item tests -Force -Recurse
- name: Remove tests folder (Unix)
if: !contains(matrix.os, 'windows')
if: "!contains(matrix.os, 'windows')"
run: |
rm -rf ./tests/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,12 @@ jobs:
pytest -s tests/tests.py
- name: Remove tests folder (Windows)
if: contains(matrix.os, 'windows')
if: "contains(matrix.os, 'windows')"
run: |
Remove-Item tests -Force -Recurse
- name: Remove tests folder (Unix)
if: !contains(matrix.os, 'windows')
if: "!contains(matrix.os, 'windows')"
run: |
rm -rf ./tests/
Expand Down
1 change: 0 additions & 1 deletion knowsmore/cmd/wordlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def setup(self):
self.unique_ch_b = int(np.sum([len(v.encode("UTF-8")) for v in self.unique_chars]))

def run(self):

self.setup()

estimated_size = self.calculate()
Expand Down

0 comments on commit 6993d5e

Please sign in to comment.