Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup lint and pytest errors #1464

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,10 @@ audio/*.json
*.out
audio/._.DS_Store
audio/._Readme.md
uniquebible/audio/bibles/
uniquebible.egg-info/
uniquebible/htmlResources/images/exlbl_largeHD/
uniquebible/venv*/
uniquebible/marvelData/
uniquebible/marvelData_*/
uniquebible/macros/
3 changes: 3 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pytest]
testpaths = tests/
norecursedirs = .git venv*
1 change: 0 additions & 1 deletion tests/test.py

This file was deleted.

2 changes: 2 additions & 0 deletions tests/test_uba.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_uba():
pass
1 change: 1 addition & 0 deletions uniquebible/plugins/context/Strongs2csv/strong2csv.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
'''
A utility to extract Strongs Numbers data into a CSV fi1e.
Can enter one or more numbers, i.e. H25 or H356,G217,G875. Saved file will
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
from __future__ import print_function

import mimetypes
Expand Down
1 change: 1 addition & 0 deletions uniquebible/util/ConfigUtil.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
import codecs
import logging
import os, pprint, platform, sys
Expand Down
1 change: 1 addition & 0 deletions uniquebible/util/LocalCliHandler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
import re, pprint, os, requests, platform, pydoc, markdown, sys, subprocess, json, shutil, webbrowser, traceback, textwrap, wcwidth, unicodedata
from uniquebible import config
import threading, time
Expand Down
Loading