-
Notifications
You must be signed in to change notification settings - Fork 12
Add tests #57
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
Open
techalchemy
wants to merge
27
commits into
master
Choose a base branch
from
add-tests
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add tests #57
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d89da7f
Add initial tests
techalchemy 901faf9
Clean up options and add virtualenv module
techalchemy 89325f5
Add tests (clean is still failing)
techalchemy fec65fc
Wheel installation into virtualenv works
techalchemy da3afc6
Update setup.cfg
techalchemy 258d51e
Implement working versions of clean and install inside virtualenvs
techalchemy 9262a4d
Fix cleaning working set and messaging
techalchemy 575b6d7
Fix tests
techalchemy 2eedd3c
Update tox and add mork, installer and virtualenv dependencies
techalchemy f707d55
Swap to mork implementation for testing
techalchemy d7f6a11
Update CI configs
techalchemy 8f56a89
Add deprecation warning ignores to test runners
techalchemy 6aa3316
Add project fixtures, venv support
techalchemy e49eaeb
Add clean, install and lock tests
techalchemy 0863400
Add sync and remove tests
techalchemy 0c0b974
Monkeypatch distlib metadata to work with version 2.1
techalchemy ecd20ff
Update lockfile
techalchemy cc5eddd
Update pipfile and lockfile
techalchemy c4b90ce
Fix packing
techalchemy 4b6cb33
Add general environment construct
techalchemy 2c85a5d
Fix environment creation
techalchemy b50e59f
Update missing import
techalchemy 69a8e7c
Store project on synchronizer
techalchemy 6a8d24e
update environment model
techalchemy af52589
Merge branch 'master' into add-tests
techalchemy 038621f
Add session closures, fix a bunch of test failures
techalchemy 3ed2038
remove extra kwarg
techalchemy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,114 @@ | ||
| .env | ||
| .venv | ||
| __pycache__ | ||
|
|
||
| /build | ||
| /dist | ||
| /docs/_build | ||
| /pack | ||
| htmlcov/ | ||
| .pytest_cache/ | ||
| .vscode/ | ||
|
|
||
| # Byte-compiled / optimized / DLL files | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
|
|
||
| # C extensions | ||
| *.so | ||
|
|
||
| *.egg-info | ||
| # Distribution / packaging | ||
| .Python | ||
| develop-eggs/ | ||
| downloads/ | ||
| eggs/ | ||
| .eggs/ | ||
| sdist/ | ||
| var/ | ||
| wheels/ | ||
| *.egg-info/ | ||
| .installed.cfg | ||
| *.egg | ||
| MANIFEST | ||
|
|
||
| *.py[co] | ||
| # PyInstaller | ||
| # Usually these files are written by a python script from a template | ||
| # before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
| *.manifest | ||
| *.spec | ||
|
|
||
| # Installer logs | ||
| pip-log.txt | ||
| pip-delete-this-directory.txt | ||
|
|
||
| # Unit test / coverage reports | ||
| htmlcov/ | ||
| .tox/ | ||
| .nox/ | ||
| .coverage | ||
| .coverage.* | ||
| .cache | ||
| nosetests.xml | ||
| coverage.xml | ||
| *.cover | ||
| .hypothesis/ | ||
| .pytest_cache/ | ||
| .vscode/ | ||
|
|
||
| # Translations | ||
| *.mo | ||
| *.pot | ||
|
|
||
| # Django stuff: | ||
| *.log | ||
| local_settings.py | ||
| db.sqlite3 | ||
|
|
||
| # Flask stuff: | ||
| instance/ | ||
| .webassets-cache | ||
|
|
||
| # Scrapy stuff: | ||
| .scrapy | ||
|
|
||
| # Sphinx documentation | ||
| docs/_build/ | ||
|
|
||
| # PyBuilder | ||
| target/ | ||
|
|
||
| # Jupyter Notebook | ||
| .ipynb_checkpoints | ||
|
|
||
| # IPython | ||
| profile_default/ | ||
| ipython_config.py | ||
|
|
||
| # pyenv | ||
| .python-version | ||
|
|
||
| # celery beat schedule file | ||
| celerybeat-schedule | ||
|
|
||
| # SageMath parsed files | ||
| *.sage.py | ||
|
|
||
| # Environments | ||
| .env | ||
| .venv | ||
| env/ | ||
| venv/ | ||
| ENV/ | ||
| env.bak/ | ||
| venv.bak/ | ||
|
|
||
| # Spyder project settings | ||
| .spyderproject | ||
| .spyproject | ||
|
|
||
| # Rope project settings | ||
| .ropeproject | ||
|
|
||
| # mkdocs documentation | ||
| /site | ||
|
|
||
| # mypy | ||
| .mypy_cache/ | ||
| .dmypy.json | ||
| dmypy.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might want a comment explaining why 5.0+ does not work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure it doesn’t but I’ve had a lot of bad experiences leaving this unpinned lately as 5.x is still in alpha and doesn’t tend to play nice with xdist on Travis due to using SQLite as a shared backing store