Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Jul 22, 2022
1 parent afc3b25 commit 633656a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 60 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ jobs:

- name: Setup black environment
run: conda create --quiet --name black pyflakes

- name: Print Test
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
python test_print.py

- name: Check formatting with black
run: |
Expand Down
52 changes: 0 additions & 52 deletions test_print.py

This file was deleted.

4 changes: 2 additions & 2 deletions urlchecker/client/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ def main(args, extra):
if result["failed"]:
print_failure(file_name + ":")
for url in result["failed"]:
print_failure(" ❌️" + url)
print_failure(" ❌️ " + url)
else:
print("\n\U0001F914 Uh oh... The following urls did not pass:")
for failed_url in check_results["failed"]:
print_failure("❌️" + failed_url)
print_failure("❌️ " + failed_url)

# If we have failures and it's not a force pass, exit with 1
if not args.force_pass and check_results["failed"]:
Expand Down

0 comments on commit 633656a

Please sign in to comment.