Python 3 compatibility (remove semicolons from .cfg files)

This commit is contained in:
Michael Mintz 2017-07-19 18:41:59 -04:00
parent a99484322a
commit 8e872d7e30
2 changed files with 11 additions and 9 deletions

View File

@ -1,6 +1,6 @@
[nosetests]
; This is the config file for default values used during nosetest runs
nocapture=1 ; Displays print statements from output. Undo this by using: --nologcapture
logging-level=INFO ; INFO keeps the logs much cleaner than using DEBUG
# This is the config file for default values used during nosetest runs
# nocapture=1 displays print statements from output. Undo this by using: --nologcapture
# logging-level=INFO keeps the logs much cleaner than using DEBUG
nocapture=1
logging-level=INFO

View File

@ -1,8 +1,10 @@
[nosetests]
# This is the config file for default values used during nosetest runs
nocapture=1 ; Displays print statements from output. Undo this by using: --nologcapture
logging-level=INFO ; INFO keeps the logs much cleaner than using DEBUG
# nocapture=1 displays print statements from output. Undo this by using: --nologcapture
# logging-level=INFO keeps the logs much cleaner than using DEBUG
nocapture=1
logging-level=INFO
[bdist_wheel]
# SeleniumBase is for Python 2.7 (right now)
universal=0
# SeleniumBase works for both Python 2.7 and Python 3
universal=1