diff --git a/.venv/bin/activate b/.venv/bin/activate deleted file mode 100644 index e5f4603..0000000 --- a/.venv/bin/activate +++ /dev/null @@ -1,78 +0,0 @@ -# This file must be used with "source bin/activate" *from bash* -# you cannot run it directly - -deactivate () { - unset -f pydoc >/dev/null 2>&1 - - # reset old environment variables - # ! [ -z ${VAR+_} ] returns true if VAR is declared at all - if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then - PATH="$_OLD_VIRTUAL_PATH" - export PATH - unset _OLD_VIRTUAL_PATH - fi - if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then - PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME" - export PYTHONHOME - unset _OLD_VIRTUAL_PYTHONHOME - fi - - # This should detect bash and zsh, which have a hash command that must - # be called to get it to forget past commands. Without forgetting - # past commands the $PATH changes we made may not be respected - if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then - hash -r 2>/dev/null - fi - - if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then - PS1="$_OLD_VIRTUAL_PS1" - export PS1 - unset _OLD_VIRTUAL_PS1 - fi - - unset VIRTUAL_ENV - if [ ! "${1-}" = "nondestructive" ] ; then - # Self destruct! - unset -f deactivate - fi -} - -# unset irrelevant variables -deactivate nondestructive - -VIRTUAL_ENV="/Users/arnaldurhilmisson/workspace/flask-swagger/.venv" -export VIRTUAL_ENV - -_OLD_VIRTUAL_PATH="$PATH" -PATH="$VIRTUAL_ENV/bin:$PATH" -export PATH - -# unset PYTHONHOME if set -if ! [ -z "${PYTHONHOME+_}" ] ; then - _OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME" - unset PYTHONHOME -fi - -if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then - _OLD_VIRTUAL_PS1="$PS1" - if [ "x" != x ] ; then - PS1="$PS1" - else - PS1="(`basename \"$VIRTUAL_ENV\"`) $PS1" - fi - export PS1 -fi - -# Make sure to unalias pydoc if it's already there -alias pydoc 2>/dev/null >/dev/null && unalias pydoc - -pydoc () { - python -m pydoc "$@" -} - -# This should detect bash and zsh, which have a hash command that must -# be called to get it to forget past commands. Without forgetting -# past commands the $PATH changes we made may not be respected -if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then - hash -r 2>/dev/null -fi diff --git a/.venv/bin/activate.csh b/.venv/bin/activate.csh deleted file mode 100644 index 7252e94..0000000 --- a/.venv/bin/activate.csh +++ /dev/null @@ -1,36 +0,0 @@ -# This file must be used with "source bin/activate.csh" *from csh*. -# You cannot run it directly. -# Created by Davide Di Blasi . - -alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' - -# Unset irrelevant variables. -deactivate nondestructive - -setenv VIRTUAL_ENV "/Users/arnaldurhilmisson/workspace/flask-swagger/.venv" - -set _OLD_VIRTUAL_PATH="$PATH" -setenv PATH "$VIRTUAL_ENV/bin:$PATH" - - - -if ("" != "") then - set env_name = "" -else - set env_name = `basename "$VIRTUAL_ENV"` -endif - -# Could be in a non-interactive environment, -# in which case, $prompt is undefined and we wouldn't -# care about the prompt anyway. -if ( $?prompt ) then - set _OLD_VIRTUAL_PROMPT="$prompt" - set prompt = "[$env_name] $prompt" -endif - -unset env_name - -alias pydoc python -m pydoc - -rehash - diff --git a/.venv/bin/activate.fish b/.venv/bin/activate.fish deleted file mode 100644 index dfc681c..0000000 --- a/.venv/bin/activate.fish +++ /dev/null @@ -1,76 +0,0 @@ -# This file must be used using `. bin/activate.fish` *within a running fish ( http://fishshell.com ) session*. -# Do not run it directly. - -function deactivate -d 'Exit virtualenv mode and return to the normal environment.' - # reset old environment variables - if test -n "$_OLD_VIRTUAL_PATH" - set -gx PATH $_OLD_VIRTUAL_PATH - set -e _OLD_VIRTUAL_PATH - end - - if test -n "$_OLD_VIRTUAL_PYTHONHOME" - set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME - set -e _OLD_VIRTUAL_PYTHONHOME - end - - if test -n "$_OLD_FISH_PROMPT_OVERRIDE" - # Set an empty local `$fish_function_path` to allow the removal of `fish_prompt` using `functions -e`. - set -l fish_function_path - - # Erase virtualenv's `fish_prompt` and restore the original. - functions -e fish_prompt - functions -c _old_fish_prompt fish_prompt - functions -e _old_fish_prompt - set -e _OLD_FISH_PROMPT_OVERRIDE - end - - set -e VIRTUAL_ENV - - if test "$argv[1]" != 'nondestructive' - # Self-destruct! - functions -e pydoc - functions -e deactivate - end -end - -# Unset irrelevant variables. -deactivate nondestructive - -set -gx VIRTUAL_ENV "/Users/arnaldurhilmisson/workspace/flask-swagger/.venv" - -set -gx _OLD_VIRTUAL_PATH $PATH -set -gx PATH "$VIRTUAL_ENV/bin" $PATH - -# Unset `$PYTHONHOME` if set. -if set -q PYTHONHOME - set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME - set -e PYTHONHOME -end - -function pydoc - python -m pydoc $argv -end - -if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" - # Copy the current `fish_prompt` function as `_old_fish_prompt`. - functions -c fish_prompt _old_fish_prompt - - function fish_prompt - # Save the current $status, for fish_prompts that display it. - set -l old_status $status - - # Prompt override provided? - # If not, just prepend the environment name. - if test -n "" - printf '%s%s' "" (set_color normal) - else - printf '%s(%s) ' (set_color normal) (basename "$VIRTUAL_ENV") - end - - # Restore the original $status - echo "exit $old_status" | source - _old_fish_prompt - end - - set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" -end diff --git a/.venv/bin/activate_this.py b/.venv/bin/activate_this.py deleted file mode 100644 index f18193b..0000000 --- a/.venv/bin/activate_this.py +++ /dev/null @@ -1,34 +0,0 @@ -"""By using execfile(this_file, dict(__file__=this_file)) you will -activate this virtualenv environment. - -This can be used when you must use an existing Python interpreter, not -the virtualenv bin/python -""" - -try: - __file__ -except NameError: - raise AssertionError( - "You must run this like execfile('path/to/activate_this.py', dict(__file__='path/to/activate_this.py'))") -import sys -import os - -old_os_path = os.environ.get('PATH', '') -os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + os.pathsep + old_os_path -base = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -if sys.platform == 'win32': - site_packages = os.path.join(base, 'Lib', 'site-packages') -else: - site_packages = os.path.join(base, 'lib', 'python%s' % sys.version[:3], 'site-packages') -prev_sys_path = list(sys.path) -import site -site.addsitedir(site_packages) -sys.real_prefix = sys.prefix -sys.prefix = base -# Move the added items to the front of the path: -new_sys_path = [] -for item in list(sys.path): - if item not in prev_sys_path: - new_sys_path.append(item) - sys.path.remove(item) -sys.path[:0] = new_sys_path diff --git a/.venv/bin/easy_install b/.venv/bin/easy_install deleted file mode 100755 index faf0dbb..0000000 --- a/.venv/bin/easy_install +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from setuptools.command.easy_install import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/easy_install-3.6 b/.venv/bin/easy_install-3.6 deleted file mode 100755 index faf0dbb..0000000 --- a/.venv/bin/easy_install-3.6 +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from setuptools.command.easy_install import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/flask b/.venv/bin/flask deleted file mode 100755 index 3c2e4d8..0000000 --- a/.venv/bin/flask +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'Flask==0.12.1','console_scripts','flask' -__requires__ = 'Flask==0.12.1' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('Flask==0.12.1', 'console_scripts', 'flask')() - ) diff --git a/.venv/bin/flaskswagger b/.venv/bin/flaskswagger deleted file mode 100755 index e904ff2..0000000 --- a/.venv/bin/flaskswagger +++ /dev/null @@ -1,12 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python -# EASY-INSTALL-ENTRY-SCRIPT: 'flask-swagger==0.2.13','console_scripts','flaskswagger' -__requires__ = 'flask-swagger==0.2.13' -import re -import sys -from pkg_resources import load_entry_point - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit( - load_entry_point('flask-swagger==0.2.13', 'console_scripts', 'flaskswagger')() - ) diff --git a/.venv/bin/nosetests b/.venv/bin/nosetests deleted file mode 100755 index aea2bf6..0000000 --- a/.venv/bin/nosetests +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from nose import run_exit - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(run_exit()) diff --git a/.venv/bin/nosetests-3.4 b/.venv/bin/nosetests-3.4 deleted file mode 100755 index aea2bf6..0000000 --- a/.venv/bin/nosetests-3.4 +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from nose import run_exit - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(run_exit()) diff --git a/.venv/bin/pip b/.venv/bin/pip deleted file mode 100755 index e41d2fd..0000000 --- a/.venv/bin/pip +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from pip import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/pip3 b/.venv/bin/pip3 deleted file mode 100755 index e41d2fd..0000000 --- a/.venv/bin/pip3 +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from pip import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/pip3.6 b/.venv/bin/pip3.6 deleted file mode 100755 index e41d2fd..0000000 --- a/.venv/bin/pip3.6 +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from pip import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/python b/.venv/bin/python deleted file mode 120000 index 039b719..0000000 --- a/.venv/bin/python +++ /dev/null @@ -1 +0,0 @@ -python3.6 \ No newline at end of file diff --git a/.venv/bin/python-config b/.venv/bin/python-config deleted file mode 100755 index 0b74814..0000000 --- a/.venv/bin/python-config +++ /dev/null @@ -1,78 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python - -import sys -import getopt -import sysconfig - -valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags', - 'ldflags', 'help'] - -if sys.version_info >= (3, 2): - valid_opts.insert(-1, 'extension-suffix') - valid_opts.append('abiflags') -if sys.version_info >= (3, 3): - valid_opts.append('configdir') - - -def exit_with_usage(code=1): - sys.stderr.write("Usage: {0} [{1}]\n".format( - sys.argv[0], '|'.join('--'+opt for opt in valid_opts))) - sys.exit(code) - -try: - opts, args = getopt.getopt(sys.argv[1:], '', valid_opts) -except getopt.error: - exit_with_usage() - -if not opts: - exit_with_usage() - -pyver = sysconfig.get_config_var('VERSION') -getvar = sysconfig.get_config_var - -opt_flags = [flag for (flag, val) in opts] - -if '--help' in opt_flags: - exit_with_usage(code=0) - -for opt in opt_flags: - if opt == '--prefix': - print(sysconfig.get_config_var('prefix')) - - elif opt == '--exec-prefix': - print(sysconfig.get_config_var('exec_prefix')) - - elif opt in ('--includes', '--cflags'): - flags = ['-I' + sysconfig.get_path('include'), - '-I' + sysconfig.get_path('platinclude')] - if opt == '--cflags': - flags.extend(getvar('CFLAGS').split()) - print(' '.join(flags)) - - elif opt in ('--libs', '--ldflags'): - abiflags = getattr(sys, 'abiflags', '') - libs = ['-lpython' + pyver + abiflags] - libs += getvar('LIBS').split() - libs += getvar('SYSLIBS').split() - # add the prefix/lib/pythonX.Y/config dir, but only if there is no - # shared library in prefix/lib/. - if opt == '--ldflags': - if not getvar('Py_ENABLE_SHARED'): - libs.insert(0, '-L' + getvar('LIBPL')) - if not getvar('PYTHONFRAMEWORK'): - libs.extend(getvar('LINKFORSHARED').split()) - print(' '.join(libs)) - - elif opt == '--extension-suffix': - ext_suffix = sysconfig.get_config_var('EXT_SUFFIX') - if ext_suffix is None: - ext_suffix = sysconfig.get_config_var('SO') - print(ext_suffix) - - elif opt == '--abiflags': - if not getattr(sys, 'abiflags', None): - exit_with_usage() - print(sys.abiflags) - - elif opt == '--configdir': - print(sysconfig.get_config_var('LIBPL')) diff --git a/.venv/bin/python3 b/.venv/bin/python3 deleted file mode 120000 index 039b719..0000000 --- a/.venv/bin/python3 +++ /dev/null @@ -1 +0,0 @@ -python3.6 \ No newline at end of file diff --git a/.venv/bin/python3.6 b/.venv/bin/python3.6 deleted file mode 100755 index 02f7281..0000000 Binary files a/.venv/bin/python3.6 and /dev/null differ diff --git a/.venv/bin/wheel b/.venv/bin/wheel deleted file mode 100755 index 75a7e34..0000000 --- a/.venv/bin/wheel +++ /dev/null @@ -1,11 +0,0 @@ -#!/Users/arnaldurhilmisson/workspace/flask-swagger/.venv/bin/python3.6 - -# -*- coding: utf-8 -*- -import re -import sys - -from wheel.tool import main - -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/include/python3.6m b/.venv/include/python3.6m deleted file mode 120000 index de5c7ed..0000000 --- a/.venv/include/python3.6m +++ /dev/null @@ -1 +0,0 @@ -/usr/local/Cellar/python3/3.6.0_1/Frameworks/Python.framework/Versions/3.6/include/python3.6m \ No newline at end of file diff --git a/.venv/man/man1/nosetests.1 b/.venv/man/man1/nosetests.1 deleted file mode 100644 index 5772845..0000000 --- a/.venv/man/man1/nosetests.1 +++ /dev/null @@ -1,581 +0,0 @@ -.\" Man page generated from reStructuredText. -. -.TH "NOSETESTS" "1" "April 04, 2015" "1.3" "nose" -.SH NAME -nosetests \- Nicer testing for Python -. -.nr rst2man-indent-level 0 -. -.de1 rstReportMargin -\\$1 \\n[an-margin] -level \\n[rst2man-indent-level] -level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] -- -\\n[rst2man-indent0] -\\n[rst2man-indent1] -\\n[rst2man-indent2] -.. -.de1 INDENT -.\" .rstReportMargin pre: -. RS \\$1 -. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] -. nr rst2man-indent-level +1 -.\" .rstReportMargin post: -.. -.de UNINDENT -. RE -.\" indent \\n[an-margin] -.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] -.nr rst2man-indent-level -1 -.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] -.in \\n[rst2man-indent\\n[rst2man-indent-level]]u -.. -.SH NICER TESTING FOR PYTHON -.SS SYNOPSIS -.INDENT 0.0 -.INDENT 3.5 -nosetests [options] [names] -.UNINDENT -.UNINDENT -.SS DESCRIPTION -.sp -nose collects tests automatically from python source files, -directories and packages found in its working directory (which -defaults to the current working directory). Any python source file, -directory or package that matches the testMatch regular expression -(by default: \fI(?:^|[b_.\-])[Tt]est)\fP will be collected as a test (or -source for collection of tests). In addition, all other packages -found in the working directory will be examined for python source files -or directories that match testMatch. Package discovery descends all -the way down the tree, so package.tests and package.sub.tests and -package.sub.sub2.tests will all be collected. -.sp -Within a test directory or package, any python source file matching -testMatch will be examined for test cases. Within a test module, -functions and classes whose names match testMatch and TestCase -subclasses with any name will be loaded and executed as tests. Tests -may use the assert keyword or raise AssertionErrors to indicate test -failure. TestCase subclasses may do the same or use the various -TestCase methods available. -.sp -\fBIt is important to note that the default behavior of nose is to -not include tests from files which are executable.\fP To include -tests from such files, remove their executable bit or use -the \-\-exe flag (see \(aqOptions\(aq section below). -.SS Selecting Tests -.sp -To specify which tests to run, pass test names on the command line: -.INDENT 0.0 -.INDENT 3.5 -.sp -.nf -.ft C -nosetests only_test_this.py -.ft P -.fi -.UNINDENT -.UNINDENT -.sp -Test names specified may be file or module names, and may optionally -indicate the test case to run by separating the module or file name -from the test case name with a colon. Filenames may be relative or -absolute. Examples: -.INDENT 0.0 -.INDENT 3.5 -.sp -.nf -.ft C -nosetests test.module -nosetests another.test:TestCase.test_method -nosetests a.test:TestCase -nosetests /path/to/test/file.py:test_function -.ft P -.fi -.UNINDENT -.UNINDENT -.sp -You may also change the working directory where nose looks for tests -by using the \-w switch: -.INDENT 0.0 -.INDENT 3.5 -.sp -.nf -.ft C -nosetests \-w /path/to/tests -.ft P -.fi -.UNINDENT -.UNINDENT -.sp -Note, however, that support for multiple \-w arguments is now deprecated -and will be removed in a future release. As of nose 0.10, you can get -the same behavior by specifying the target directories \fIwithout\fP -the \-w switch: -.INDENT 0.0 -.INDENT 3.5 -.sp -.nf -.ft C -nosetests /path/to/tests /another/path/to/tests -.ft P -.fi -.UNINDENT -.UNINDENT -.sp -Further customization of test selection and loading is possible -through the use of plugins. -.sp -Test result output is identical to that of unittest, except for -the additional features (error classes, and plugin\-supplied -features such as output capture and assert introspection) detailed -in the options below. -.SS Configuration -.sp -In addition to passing command\-line options, you may also put -configuration options in your project\(aqs \fIsetup.cfg\fP file, or a .noserc -or nose.cfg file in your home directory. In any of these standard -ini\-style config files, you put your nosetests configuration in a -\fB[nosetests]\fP section. Options are the same as on the command line, -with the \-\- prefix removed. For options that are simple switches, you -must supply a value: -.INDENT 0.0 -.INDENT 3.5 -.sp -.nf -.ft C -[nosetests] -verbosity=3 -with\-doctest=1 -.ft P -.fi -.UNINDENT -.UNINDENT -.sp -All configuration files that are found will be loaded and their -options combined. You can override the standard config file loading -with the \fB\-c\fP option. -.SS Using Plugins -.sp -There are numerous nose plugins available via easy_install and -elsewhere. To use a plugin, just install it. The plugin will add -command line options to nosetests. To verify that the plugin is installed, -run: -.INDENT 0.0 -.INDENT 3.5 -.sp -.nf -.ft C -nosetests \-\-plugins -.ft P -.fi -.UNINDENT -.UNINDENT -.sp -You can add \-v or \-vv to that command to show more information -about each plugin. -.sp -If you are running nose.main() or nose.run() from a script, you -can specify a list of plugins to use by passing a list of plugins -with the plugins keyword argument. -.SS 0.9 plugins -.sp -nose 1.0 can use SOME plugins that were written for nose 0.9. The -default plugin manager inserts a compatibility wrapper around 0.9 -plugins that adapts the changed plugin api calls. However, plugins -that access nose internals are likely to fail, especially if they -attempt to access test case or test suite classes. For example, -plugins that try to determine if a test passed to startTest is an -individual test or a suite will fail, partly because suites are no -longer passed to startTest and partly because it\(aqs likely that the -plugin is trying to find out if the test is an instance of a class -that no longer exists. -.SS 0.10 and 0.11 plugins -.sp -All plugins written for nose 0.10 and 0.11 should work with nose 1.0. -.SS Options -.INDENT 0.0 -.TP -.B \-V, \-\-version -Output nose version and exit -.UNINDENT -.INDENT 0.0 -.TP -.B \-p, \-\-plugins -Output list of available plugins and exit. Combine with higher verbosity for greater detail -.UNINDENT -.INDENT 0.0 -.TP -.B \-v=DEFAULT, \-\-verbose=DEFAULT -Be more verbose. [NOSE_VERBOSE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-verbosity=VERBOSITY -Set verbosity; \-\-verbosity=2 is the same as \-v -.UNINDENT -.INDENT 0.0 -.TP -.B \-q=DEFAULT, \-\-quiet=DEFAULT -Be less verbose -.UNINDENT -.INDENT 0.0 -.TP -.B \-c=FILES, \-\-config=FILES -Load configuration from config file(s). May be specified multiple times; in that case, all config files will be loaded and combined -.UNINDENT -.INDENT 0.0 -.TP -.B \-w=WHERE, \-\-where=WHERE -Look for tests in this directory. May be specified multiple times. The first directory passed will be used as the working directory, in place of the current working directory, which is the default. Others will be added to the list of tests to execute. [NOSE_WHERE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-py3where=PY3WHERE -Look for tests in this directory under Python 3.x. Functions the same as \(aqwhere\(aq, but only applies if running under Python 3.x or above. Note that, if present under 3.x, this option completely replaces any directories specified with \(aqwhere\(aq, so the \(aqwhere\(aq option becomes ineffective. [NOSE_PY3WHERE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-m=REGEX, \-\-match=REGEX, \-\-testmatch=REGEX -Files, directories, function names, and class names that match this regular expression are considered tests. Default: (?:^|[b_./\-])[Tt]est [NOSE_TESTMATCH] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-tests=NAMES -Run these tests (comma\-separated list). This argument is useful mainly from configuration files; on the command line, just pass the tests to run as additional arguments with no switch. -.UNINDENT -.INDENT 0.0 -.TP -.B \-l=DEFAULT, \-\-debug=DEFAULT -Activate debug logging for one or more systems. Available debug loggers: nose, nose.importer, nose.inspector, nose.plugins, nose.result and nose.selector. Separate multiple names with a comma. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-debug\-log=FILE -Log debug messages to this file (default: sys.stderr) -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-logging\-config=FILE, \-\-log\-config=FILE -Load logging config from this file \-\- bypasses all other logging config settings. -.UNINDENT -.INDENT 0.0 -.TP -.B \-I=REGEX, \-\-ignore\-files=REGEX -Completely ignore any file that matches this regular expression. Takes precedence over any other settings or plugins. Specifying this option will replace the default setting. Specify this option multiple times to add more regular expressions [NOSE_IGNORE_FILES] -.UNINDENT -.INDENT 0.0 -.TP -.B \-e=REGEX, \-\-exclude=REGEX -Don\(aqt run tests that match regular expression [NOSE_EXCLUDE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-i=REGEX, \-\-include=REGEX -This regular expression will be applied to files, directories, function names, and class names for a chance to include additional tests that do not match TESTMATCH. Specify this option multiple times to add more regular expressions [NOSE_INCLUDE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-x, \-\-stop -Stop running tests after the first error or failure -.UNINDENT -.INDENT 0.0 -.TP -.B \-P, \-\-no\-path\-adjustment -Don\(aqt make any changes to sys.path when loading tests [NOSE_NOPATH] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-exe -Look for tests in python modules that are executable. Normal behavior is to exclude executable modules, since they may not be import\-safe [NOSE_INCLUDE_EXE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-noexe -DO NOT look for tests in python modules that are executable. (The default on the windows platform is to do so.) -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-traverse\-namespace -Traverse through all path entries of a namespace package -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-first\-package\-wins, \-\-first\-pkg\-wins, \-\-1st\-pkg\-wins -nose\(aqs importer will normally evict a package from sys.modules if it sees a package with the same name in a different location. Set this option to disable that behavior. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-no\-byte\-compile -Prevent nose from byte\-compiling the source into .pyc files while nose is scanning for and running tests. -.UNINDENT -.INDENT 0.0 -.TP -.B \-a=ATTR, \-\-attr=ATTR -Run only tests that have attributes specified by ATTR [NOSE_ATTR] -.UNINDENT -.INDENT 0.0 -.TP -.B \-A=EXPR, \-\-eval\-attr=EXPR -Run only tests for whose attributes the Python expression EXPR evaluates to True [NOSE_EVAL_ATTR] -.UNINDENT -.INDENT 0.0 -.TP -.B \-s, \-\-nocapture -Don\(aqt capture stdout (any stdout output will be printed immediately) [NOSE_NOCAPTURE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-nologcapture -Disable logging capture plugin. Logging configuration will be left intact. [NOSE_NOLOGCAPTURE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-logging\-format=FORMAT -Specify custom format to print statements. Uses the same format as used by standard logging handlers. [NOSE_LOGFORMAT] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-logging\-datefmt=FORMAT -Specify custom date/time format to print statements. Uses the same format as used by standard logging handlers. [NOSE_LOGDATEFMT] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-logging\-filter=FILTER -Specify which statements to filter in/out. By default, everything is captured. If the output is too verbose, -use this option to filter out needless output. -Example: filter=foo will capture statements issued ONLY to - foo or foo.what.ever.sub but not foobar or other logger. -Specify multiple loggers with comma: filter=foo,bar,baz. -If any logger name is prefixed with a minus, eg filter=\-foo, -it will be excluded rather than included. Default: exclude logging messages from nose itself (\-nose). [NOSE_LOGFILTER] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-logging\-clear\-handlers -Clear all other logging handlers -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-logging\-level=DEFAULT -Set the log level to capture -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-with\-coverage -Enable plugin Coverage: -Activate a coverage report using Ned Batchelder\(aqs coverage module. - [NOSE_WITH_COVERAGE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-package=PACKAGE -Restrict coverage output to selected packages [NOSE_COVER_PACKAGE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-erase -Erase previously collected coverage statistics before run -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-tests -Include test modules in coverage report [NOSE_COVER_TESTS] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-min\-percentage=DEFAULT -Minimum percentage of coverage for tests to pass [NOSE_COVER_MIN_PERCENTAGE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-inclusive -Include all python files under working directory in coverage report. Useful for discovering holes in test coverage if not all files are imported by the test suite. [NOSE_COVER_INCLUSIVE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-html -Produce HTML coverage information -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-html\-dir=DIR -Produce HTML coverage information in dir -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-branches -Include branch coverage in coverage report [NOSE_COVER_BRANCHES] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-xml -Produce XML coverage information -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-cover\-xml\-file=FILE -Produce XML coverage information in file -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-pdb -Drop into debugger on failures or errors -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-pdb\-failures -Drop into debugger on failures -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-pdb\-errors -Drop into debugger on errors -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-no\-deprecated -Disable special handling of DeprecatedTest exceptions. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-with\-doctest -Enable plugin Doctest: -Activate doctest plugin to find and run doctests in non\-test modules. - [NOSE_WITH_DOCTEST] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-doctest\-tests -Also look for doctests in test modules. Note that classes, methods and functions should have either doctests or non\-doctest tests, not both. [NOSE_DOCTEST_TESTS] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-doctest\-extension=EXT -Also look for doctests in files with this extension [NOSE_DOCTEST_EXTENSION] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-doctest\-result\-variable=VAR -Change the variable name set to the result of the last interpreter command from the default \(aq_\(aq. Can be used to avoid conflicts with the _() function used for text translation. [NOSE_DOCTEST_RESULT_VAR] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-doctest\-fixtures=SUFFIX -Find fixtures for a doctest file in module with this name appended to the base name of the doctest file -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-doctest\-options=OPTIONS -Specify options to pass to doctest. Eg. \(aq+ELLIPSIS,+NORMALIZE_WHITESPACE\(aq -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-with\-isolation -Enable plugin IsolationPlugin: -Activate the isolation plugin to isolate changes to external -modules to a single test module or package. The isolation plugin -resets the contents of sys.modules after each test module or -package runs to its state before the test. PLEASE NOTE that this -plugin should not be used with the coverage plugin, or in any other case -where module reloading may produce undesirable side\-effects. - [NOSE_WITH_ISOLATION] -.UNINDENT -.INDENT 0.0 -.TP -.B \-d, \-\-detailed\-errors, \-\-failure\-detail -Add detail to error output by attempting to evaluate failed asserts [NOSE_DETAILED_ERRORS] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-with\-profile -Enable plugin Profile: -Use this plugin to run tests using the hotshot profiler. - [NOSE_WITH_PROFILE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-profile\-sort=SORT -Set sort order for profiler output -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-profile\-stats\-file=FILE -Profiler stats file; default is a new temp file on each run -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-profile\-restrict=RESTRICT -Restrict profiler output. See help for pstats.Stats for details -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-no\-skip -Disable special handling of SkipTest exceptions. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-with\-id -Enable plugin TestId: -Activate to add a test id (like #1) to each test name output. Activate -with \-\-failed to rerun failing tests only. - [NOSE_WITH_ID] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-id\-file=FILE -Store test ids found in test runs in this file. Default is the file .noseids in the working directory. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-failed -Run the tests that failed in the last test run. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-processes=NUM -Spread test run among this many processes. Set a number equal to the number of processors or cores in your machine for best results. Pass a negative number to have the number of processes automatically set to the number of cores. Passing 0 means to disable parallel testing. Default is 0 unless NOSE_PROCESSES is set. [NOSE_PROCESSES] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-process\-timeout=SECONDS -Set timeout for return of results from each test runner process. Default is 10. [NOSE_PROCESS_TIMEOUT] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-process\-restartworker -If set, will restart each worker process once their tests are done, this helps control memory leaks from killing the system. [NOSE_PROCESS_RESTARTWORKER] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-with\-xunit -Enable plugin Xunit: This plugin provides test results in the standard XUnit XML format. [NOSE_WITH_XUNIT] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-xunit\-file=FILE -Path to xml file to store the xunit report in. Default is nosetests.xml in the working directory [NOSE_XUNIT_FILE] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-xunit\-testsuite\-name=PACKAGE -Name of the testsuite in the xunit xml, generated by plugin. Default test suite name is nosetests. -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-all\-modules -Enable plugin AllModules: Collect tests from all python modules. - [NOSE_ALL_MODULES] -.UNINDENT -.INDENT 0.0 -.TP -.B \-\-collect\-only -Enable collect\-only: -Collect and output test names only, don\(aqt run any tests. - [COLLECT_ONLY] -.UNINDENT -.SH AUTHOR -Nose developers -.SH COPYRIGHT -2009, Jason Pellerin -.\" Generated by docutils manpage writer. -. diff --git a/.venv/pip-selfcheck.json b/.venv/pip-selfcheck.json deleted file mode 100644 index 5e8b104..0000000 --- a/.venv/pip-selfcheck.json +++ /dev/null @@ -1 +0,0 @@ -{"last_check":"2017-04-05T08:03:08Z","pypi_version":"9.0.1"} \ No newline at end of file