summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Don't use old test image (deprecated ID scheme)0.6.0-integrationJoffrey F2014-12-151-14/+8
|
* Better pull confirmationJoffrey F2014-12-151-8/+6
|
* Longer timeout when contacting hubJoffrey F2014-12-151-0/+3
|
* Fixed integration testJoffrey F2014-11-031-0/+2
|
* Changed assertIn to assertTrue(... in ...) (2.6 support)Joffrey F2014-11-031-3/+3
|
* Merge branch 'filters' of github.com:irachex/docker-py into irachex-filtersJoffrey F2014-11-032-6/+32
|\ | | | | | | | | | | | | Conflicts: docker/utils/__init__.py docker/utils/utils.py tests/utils_test.py
| * Add support for filtering images and containersHuayi Zhang2014-10-052-1/+28
| | | | | | | | | | | | | | [`filters` is a json encoded value of the filters (a map[string][string]) to process on the images list. ][1] The tricky thing is that we must convert boolean value to string and any filter value to list to make a `map[string][string]` json format [1]: https://docs.docker.com/reference/api/docker_remote_api_v1.14/#list-images
* | Merge branch 'feature_logs-tail' of github.com:totem/docker-py into ↵Joffrey F2014-10-302-0/+30
|\ \ | | | | | | | | | | | | | | | | | | | | | totem-feature_logs-tail Conflicts: docker/client.py tests/fake_api.py
| * | Add support for tailing logs (introduced in API : v1.13)sukrit0072014-08-223-1/+31
| | | | | | | | | | | | Updated default version to v1.13
* | | Merge pull request #379 from tutumcloud/logs_tailJoffrey F2014-10-301-3/+6
|\ \ \ | | | | | | | | Added tail behaviour to logs command, same as CLI v1.3 (latest)
| * | | Added tail behaviour to logs command, same as CLI v1.3 (latest)Alberto2014-10-271-3/+6
| | |/ | |/|
* | | Merge pull request #324 from infoxchange/clear-unixconn-poolJoffrey F2014-10-302-0/+26
|\ \ \ | | | | | | | | Clear UNIX connections pool to avoid ResourceWarnings
| * | | Test resource warnings when using the clientAlexey Kotlyarov2014-09-222-0/+26
| |/ /
* | | Merge pull request #360 from proppy/kwargs-from-envJoffrey F2014-10-294-1/+31
|\ \ \ | | | | | | | | utils: add kwargs_from_env
| * | | utils: add kwargs_from_envJohan Euphrosine2014-10-294-1/+31
| | | |
* | | | Merge branch 'pause-unpause' of github.com:phensley/docker-py into ↵Joffrey F2014-10-293-0/+63
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | phensley-pause-unpause Conflicts: README.md tests/integration_test.py tests/test.py
| * | | Unit and integration tests for pause/unpause.Patrick Hensley2014-10-043-0/+67
| |/ /
* | | Merge branch 'support-devices' of github.com:dims/docker-py into ↵Joffrey F2014-10-291-0/+35
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | dims-support-devices Conflicts: README.md
| * | | Ability to specify Host Devices during container startDavanum Srinivas2014-10-241-0/+35
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The command line and daemon started supporting --device parameter during docker start a while ago in the following commit: docker/docker@e855c4b Since the command line looks like this, --device=[] Add a host device to the container (e.g. --device=/dev/sdc:/dev/xvdc) This patch allows a list of strings to be passed into the start() method and we parse out the 3 components just like in the above mentioned commit
* | | Merge branch 'exec' of github.com:phensley/docker-py into phensley-execJoffrey F2014-10-293-1/+87
|\ \ \ | | | | | | | | | | | | | | | | Conflicts: README.md
| * | | Use shlex for exec string cmd, added integration testcase.Patrick Hensley2014-10-221-2/+17
| | | |
| * | | Fix typo in exec url.Patrick Hensley2014-10-181-1/+1
| | | |
| * | | Unit and integration tests for exec.Patrick Hensley2014-10-173-1/+72
| |/ /
* | | Merge pull request #306 from groundeffect/masterJoffrey F2014-10-291-0/+24
|\ \ \ | | | | | | | | Add support for 'cpuset'
| * | | Added support for 'cpuset'davy2014-08-271-0/+24
| | | |
* | | | Remove accidental changes to integration_test.pySøren Gjesse2014-10-211-37/+0
| | | |
* | | | Add directories to the Docker contextSøren Gjesse2014-10-212-5/+73
| |/ / |/| | | | | | | | | | | | | | | | | | | | This change adds both files and directories to the tra-file for the Docker context. Previously only files where added. The context will now also contain empty directoryes and symlinks to directories.
* | | Fixed integration testsJoffrey F2014-09-081-6/+4
| | |
* | | add support to add or drop capabilitiesChristian Hammerl2014-09-041-0/+50
| | |
* | | first cut of restart policyShreyas Karnik2014-08-262-8/+54
|/ /
* | pep8 fixJoffrey F2014-08-221-1/+3
| |
* | Allow pushing a single tag.Cameron Maske2014-08-221-0/+25
| | | | | | | | Closes #282
* | Merge pull request #291 from yograterol/masterJoffrey F2014-08-221-0/+25
|\ \ | |/ |/| Volumes parameter on create_container should be validated as string
| * Create test for volume as stringYohan Graterol2014-08-171-0/+25
| |
* | Stop timeout should be added to the request timeoutMaxime Petazzoni2014-08-191-6/+9
|/ | | | | | | | | | | Using the max of the stop timeout and request timeout did not entirely make sure that a stop timeout greater than a request timeout wouldn't fail prematurely with a HTTPTimeout exception. The correct behavior is to add the timeouts together, as the stop timeout is understood to be part of the "request processing time". Any transport-level timeout thus comes in addition to that. Signed-off-by: Maxime Petazzoni <max@signalfuse.com>
* Adding tests for mem_limit string conversion + adding default unitLeonid Mirsky2014-08-051-0/+64
|
* Merge pull request #280 from emonty/remove_auth_from_testsJoffrey F2014-07-231-2/+10
|\ | | | | Protect push tests from environment
| * Protect push tests from environmentMonty Taylor2014-07-221-2/+10
| | | | | | | | | | | | If the tests are run somewhere that somebody has push auth configured, the auth headers bleed into the tests. Add a mock to prevent that from happening.
* | Merge pull request #268 from brutasse/265-dockerignoreJoffrey F2014-07-232-1/+90
|\ \ | |/ |/| Add support for .dockerignore
| * Add support for .dockerignoreBruno Renié2014-07-232-1/+91
| | | | | | | | | | | | | | | | Fixes #265. Implementation is a bit more elaborate than docker's implementation and matches with the one proposed in dotcloud/docker#6869 to handle permission issues more nicely.
* | Merge pull request #259 from dotcloud/166-complete-parse-hostJoffrey F2014-07-092-5/+38
|\ \ | | | | | | Support same URL schemes as Docker
| * | Fixed base_url related testsJoffrey F2014-07-031-4/+4
| | |
| * | Implemented complete parse_host method to handle all accepted values of ↵Joffrey F2014-07-031-1/+34
| |/ | | | | | | Client's base_url. Unit tests
* | allow docker client to connect to a remote hostMichael Merickel2014-07-071-2/+4
| | | | | | | | | | | | | | to run the tests on a host without using the default unix socket, it's now possible to specify: DOCKER_HOST=tcp://localdocker:4243 env/bin/python setup.py test
* | support specifying location of temp foldersMichael Merickel2014-07-051-1/+9
| | | | | | | | | | | | | | | | | | | | | | TestWithBinds was failing when shared folders are used because /tmp was not shared from OS X to my VM. This fix allows the location of the temp folders to be changed via: TMPDIR=$(pwd) env/bin/python setup.py test This also properly cleans up temp folders which were sticking around before.
* | fix ListContainers which was failing with "executable true; not found"Michael Merickel2014-07-051-2/+2
|/
* get size from Client.containersAli Vakilzade2014-06-221-0/+1
|
* Add resize() method to Clientd11wtq2014-06-212-0/+24
|
* Updated/fixed integration tests. Moved 'pull busybox' out of setUp(). ↵Joffrey F2014-06-201-44/+49
| | | | Commented out logs streaming test
* Update unit tests to use API v1.12Joffrey F2014-06-202-8/+18
|