Commit a385bbe805069bcdd0777cc70ff6a09116b62962

Authored by 季培红
1 parent e1c18729

add sys

.gitignore
1   -.idea
2 1 \ No newline at end of file
  2 +# Created by .ignore support plugin (hsz.mobi)
  3 +### Python template
  4 +# Byte-compiled / optimized / DLL files
  5 +__pycache__/
  6 +*.pyc
  7 +*.py[cod]
  8 +*$py.class
  9 +
  10 +# C extensions
  11 +*.so
  12 +
  13 +# Distribution / packaging
  14 +.Python
  15 +env/
  16 +build/
  17 +develop-eggs/
  18 +dist/
  19 +downloads/
  20 +eggs/
  21 +.eggs/
  22 +lib/
  23 +lib64/
  24 +parts/
  25 +sdist/
  26 +var/
  27 +wheels/
  28 +*.egg-info/
  29 +.installed.cfg
  30 +*.egg
  31 +
  32 +# PyInstaller
  33 +# Usually these files are written by a python script from a template
  34 +# before PyInstaller builds the exe, so as to inject date/other infos into it.
  35 +*.manifest
  36 +*.spec
  37 +
  38 +# Installer logs
  39 +pip-log.txt
  40 +pip-delete-this-directory.txt
  41 +
  42 +# Unit test / coverage reports
  43 +htmlcov/
  44 +.tox/
  45 +.coverage
  46 +.coverage.*
  47 +.cache
  48 +nosetests.xml
  49 +coverage.xml
  50 +*,cover
  51 +.hypothesis/
  52 +
  53 +# Translations
  54 +*.mo
  55 +*.pot
  56 +
  57 +# Django stuff:
  58 +*.log
  59 +local_settings.py
  60 +
  61 +# Flask stuff:
  62 +instance/
  63 +.webassets-cache
  64 +
  65 +# Scrapy stuff:
  66 +.scrapy
  67 +
  68 +# Sphinx documentation
  69 +docs/_build/
  70 +
  71 +# PyBuilder
  72 +target/
  73 +
  74 +# Jupyter Notebook
  75 +.ipynb_checkpoints
  76 +
  77 +# pyenv
  78 +.python-version
  79 +
  80 +# celery beat schedule file
  81 +celerybeat-schedule
  82 +
  83 +# SageMath parsed files
  84 +*.sage.py
  85 +
  86 +# dotenv
  87 +.env
  88 +
  89 +# virtualenv
  90 +.venv
  91 +venv/
  92 +ENV/
  93 +
  94 +# Spyder project settings
  95 +.spyderproject
  96 +
  97 +# Rope project settings
  98 +.ropeproject
  99 +### VirtualEnv template
  100 +# Virtualenv
  101 +# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  102 +.Python
  103 +[Bb]in
  104 +[Ii]nclude
  105 +[Ll]ib
  106 +[Ll]ib64
  107 +[Ll]ocal
  108 +[Ss]cripts
  109 +pyvenv.cfg
  110 +.venv
  111 +pip-selfcheck.json
  112 +### JetBrains template
  113 +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  114 +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  115 +
  116 +# User-specific stuff:
  117 +.idea/
  118 +.idea/**/workspace.xml
  119 +.idea/**/tasks.xml
  120 +.idea/dictionaries
  121 +
  122 +# Sensitive or high-churn files:
  123 +.idea/**/dataSources/
  124 +.idea/**/dataSources.ids
  125 +.idea/**/dataSources.xml
  126 +.idea/**/dataSources.local.xml
  127 +.idea/**/sqlDataSources.xml
  128 +.idea/**/dynamic.xml
  129 +.idea/**/uiDesigner.xml
  130 +
  131 +# Gradle:
  132 +.idea/**/gradle.xml
  133 +.idea/**/libraries
  134 +
  135 +# Mongo Explorer plugin:
  136 +.idea/**/mongoSettings.xml
  137 +
  138 +## File-based project format:
  139 +*.iws
  140 +
  141 +## Plugin-specific files:
  142 +
  143 +# IntelliJ
  144 +/out/
  145 +.idea/
  146 +
  147 +# mpeltonen/sbt-idea plugin
  148 +.idea_modules/
  149 +
  150 +# JIRA plugin
  151 +atlassian-ide-plugin.xml
  152 +
  153 +# Crashlytics plugin (for Android Studio and IntelliJ)
  154 +com_crashlytics_export_strings.xml
  155 +crashlytics.properties
  156 +crashlytics-build.properties
  157 +fabric.properties
  158 +
  159 +reports/.id
3 160 \ No newline at end of file
... ...
atdd/__pycache__/ATDDCase.cpython-36.pyc
No preview for this file type
atdd/__pycache__/PcPost.cpython-36.pyc
No preview for this file type
tests/Staff_Management/__init__.py
1   -from atdd.PcPost import PcPost
2 1 \ No newline at end of file
  2 +import sys
  3 +sys.path.append('E:\\yq-interface-test\\atdd')
3 4 \ No newline at end of file
... ...
tests/__init__.py
1   -from atdd.PcPost import PcPost
2 1 \ No newline at end of file
  2 +import sys
  3 +sys.path.append('E:\\yq-interface-test\\atdd')
  4 +#print(sys.path)
3 5 \ No newline at end of file
... ...