Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-07-11 | Add license field back to setup keywords | 1 | -2/+3 | ||
2014-07-11 | Cleanup imports and move __version__ to __init__.py | 7 | -41/+40 | ||
2014-07-11 | Add standalone runtests.py script for running tests | 1 | -0/+2969 | ||
This allows a user to not install py.test and/or tox in order to test changes to the source code. | |||||
2014-07-11 | Add positional arguments to tox.ini | 1 | -2/+2 | ||
This allows you to pass additional flags to pytest. | |||||
2014-07-11 | Remove envlist from tox.ini | 1 | -3/+0 | ||
I prefer executing 'tox' and having local results for my default version of python. Specifying a particular python version is easy with the '-e' flag. | |||||
2014-07-10 | Remove test publish target from makefile | 1 | -6/+2 | ||
2014-07-10 | Tweak makefile test runner | 1 | -1/+1 | ||
2014-07-10 | Update gitignore to include .tox directory | 1 | -0/+1 | ||
2014-07-10 | Add tox configuration file | 1 | -0/+6 | ||
2014-07-10 | Remove executable bit from test_basic.py | 1 | -0/+0 | ||
2014-07-08 | Ignore build directory for wheels | 1 | -0/+1 | ||
2014-07-08 | Push test packages to correct server | 1 | -2/+2 | ||
2014-07-08 | Fix typo in setup.py classifiers | 1 | -1/+1 | ||
2014-07-07 | Add unit test for adding a package file via CLI | 1 | -0/+24 | ||
Re #20 | |||||
2014-07-07 | Remove accidental tabs in unit tests | 1 | -6/+6 | ||
Python 2 will overlook this and continue executing, but python 3 will issue an error and exit. | |||||
2014-07-07 | Cleanup setup.py | 1 | -27/+17 | ||
2014-07-07 | Use entry point for bin stub | 1 | -1/+4 | ||
The script in bin/ remains for running directly from the source directory. | |||||
2014-07-07 | Parse version string without importing source code | 1 | -9/+7 | ||
It's probably better to execute as little code as possible from setup.py, so this approach seems cleaner to me. | |||||
2014-07-07 | Remove test and publish functions from setup.py | 1 | -10/+0 | ||
2014-07-07 | Add setup.cfg | 1 | -0/+2 | ||
2014-07-07 | Simplify MANIFEST.in | 1 | -1/+1 | ||
2014-07-07 | Update travis configuration to use make test | 1 | -4/+4 | ||
2014-07-07 | Add Makefile for testing and publishing | 1 | -0/+12 | ||
2014-07-07 | Move tests into a directory | 1 | -0/+0 | ||
I'm hoping to add more tests for specific features and break then into separate files so things are a bit easier to manage. | |||||
2014-05-29 | Add Alexandre Viau to list of authors | 1 | -2/+2 | ||
Thanks for the contributions! They are much appreciated. | |||||
2014-05-29 | Correct logic in package prefix test | 1 | -2/+2 | ||
In reference to #33. | |||||
2014-05-27 | Add test for syncing packages with a non-default prefix | 1 | -0/+28 | ||
This test currently fails because of a bug. In reference to #33. | |||||
2014-01-01 | Update copyright year | 1 | -1/+1 | ||
2014-01-01 | Update gitignore to exclude setuptools cruft | 1 | -0/+2 | ||
2014-01-01 | Update history and version number for 0.6.3v0.6.3 | 2 | -1/+7 | ||
2014-01-01 | Prevent adding toplevel package directories | 1 | -0/+3 | ||
This change prevents users from adding toplevel package directories via the add operation in the cli. Until add is package-aware, allowing this behaviour can lead to loss of configuration files if the --force option is later used to sync. Adding packages already-defined packages will be possible in the future, but this patch is necessary to prevent users from reaching an invalid state. Re #20, #27 | |||||
2014-01-01 | Add unit test for adding a missing package | 1 | -0/+23 | ||
This fails because the add operation is not aware of package settings, and therefore adds a package dotfiles as it normally would - as a toplevel symlink. The problem arises when a user attempts to sync and the expected symlink layout is not as it should be. With the force option, this can lead to deleted files with no way to recover. Re #20, #27 | |||||
2014-01-01 | Update gitignore to include .venv | 1 | -0/+1 | ||
2013-12-19 | Fidget with the badges for the last time | 1 | -5/+5 | ||
2013-12-17 | Move waffle and travis badges to contribute section | 1 | -6/+6 | ||
2013-12-17 | Remove python 2.5 from travis-ci configuration | 1 | -1/+0 | ||
2013-12-17 | Only replace existing dotfiles on remove operation | 1 | -1/+7 | ||
It is possible that the dotifle is removed from the repository before the remove is issued. In this case only the symlink is removed. Fixes #25 | |||||
2013-12-17 | Verify symlink removal in unit test | 1 | -0/+4 | ||
Re: #25 | |||||
2013-12-17 | Add unit test for removing a dotfile with a missing target | 1 | -0/+21 | ||
If the remove operation is issued on a dotfile pointing to a target that's already been removed from the repository, then the symlink should just be removed quietly. Re: #25 | |||||
2013-11-09 | Fix history formatting for 0.6.2 | 1 | -3/+3 | ||
2013-11-09 | Update history and bump version numberv0.6.2 | 2 | -1/+8 | ||
2013-11-09 | Add waffle.io badge | 1 | -0/+3 | ||
2013-11-09 | Add Jay Sweeney to AUTHORS | 1 | -0/+1 | ||
2013-11-09 | A set makes more sense (and is faster) than list here | 1 | -1/+1 | ||
2013-11-09 | Python 3.x compat: map is lazy in 3.x | 1 | -1/+1 | ||
Closes: #21 | |||||
2013-11-09 | Fixes #22: Ensure --force option is handed on | 2 | -1/+12 | ||
2013-11-07 | Fix unit tests to exit with the correct return code | 1 | -5/+1 | ||
2013-11-07 | Bump version number and update HISTORYv0.6.1 | 2 | -1/+8 | ||
2013-11-07 | Add Jesús García Crespo to AUTHORS | 1 | -0/+1 | ||
2013-11-07 | Update contribution documentation | 1 | -3/+3 | ||
Remove mention of the develop branch since it's going away in favor of a much simpler branching model (feature branches off master). The use of git-flow was a great learning experience, but is really too much for projects such as this. |