Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Merge branch 'aanand-integration-test-fixes' | Joffrey F | 2015-09-22 | 2 | -83/+87 | |
|\ \ \ | |/ / |/| | | ||||||
| * | | Make volume binds tests work on any host | Aanand Prasad | 2015-09-22 | 2 | -81/+81 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of creating the test directory directly on the host, create it by starting a container with the directory bind-mounted, so that it doesn't matter whether the daemon is local, in a VM or remote. This removes the need to make /tmp a volume in the test container, and to share it with the dind container. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | |||||
| * | | Only pull busybox in integration tests if we don't already have it | Aanand Prasad | 2015-09-22 | 1 | -2/+6 | |
|/ / | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | |||||
* | | Pin busybox version to use in integration tests | Joffrey F | 2015-09-21 | 1 | -97/+65 | |
| | | | | | | | | | | | | Removed obsolete non-streaming build test Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | | Merge pull request #781 from docker/coverage-pin | Joffrey F | 2015-09-21 | 1 | -0/+1 | |
|\ \ | | | | | | | Force coverage dependency to a version supporting py3.2 | |||||
| * | | Force coverage dependency to a version supporting py3.2coverage-pin | Joffrey F | 2015-09-21 | 1 | -0/+1 | |
|/ / | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | | Merge pull request #772 from rutsky/patch-1 | Joffrey F | 2015-09-18 | 1 | -7/+7 | |
|\ \ | | | | | | | add missing dots at ends of command descriptions | |||||
| * | | add missing dots at ends of command descriptions | Vladimir Rutsky | 2015-09-16 | 1 | -7/+7 | |
| | | | | | | | | | | | | Signed-off-by: Vladimir Rutsky <vladimir@rutsky.org> | |||||
* | | | Merge pull request #779 from rutsky/patch-4 | Joffrey F | 2015-09-18 | 1 | -1/+1 | |
|\ \ \ | |_|/ |/| | | fix network_mode 'none' value | |||||
| * | | fix network_mode 'none' value | Vladimir Rutsky | 2015-09-18 | 1 | -1/+1 | |
|/ / | | | | | Signed-off-by: Vladimir Rutsky <vladimir@rutsky.org> | |||||
* | | Merge pull request #764 from docker/744-volume-api-support | Joffrey F | 2015-09-16 | 15 | -104/+512 | |
|\ \ | | | | | | | Volume API support | |||||
| * | | Improve volume cleanup logic744-volume-api-support | Joffrey F | 2015-09-16 | 1 | -4/+5 | |
| | | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | | Detail which exception is thrown by remove_volume | Joffrey F | 2015-09-16 | 1 | -1/+2 | |
| | | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | | Generic skip decorator for low API version accessible to all tests | Joffrey F | 2015-09-16 | 12 | -99/+98 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add simpler version comparison functions Add decorator to enforce minimum version in API methods Fix utils imports Add minimum_version decorators on API methods that needed it GroupAdd test requires API version >= 1.20 Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | | Add documentation for volume API methods | Joffrey F | 2015-09-16 | 1 | -1/+66 | |
| | | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | | Modify unit tests suite to allow mock routes to optionally be method-aware | Joffrey F | 2015-09-16 | 4 | -47/+339 | |
| | | | | | | | | | | | | | | | | | | | | | Added mock API routes for volumes API Add unit tests and integration tests for volume API Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | | Basic volume API implementation. | Joffrey F | 2015-09-15 | 3 | -1/+51 | |
| |/ | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | Merge pull request #768 from ColinHuang/master | Joffrey F | 2015-09-15 | 1 | -1/+0 | |
| |\ | |/ |/| | Remove not exists file in MANIFEST.in | |||||
* | | Remove not exists file in MANIFEST.in | Colin Huang | 2015-09-15 | 1 | -1/+0 | |
|/ | | | | Signed-off-by: Colin Huang <sidawei@gmail.com> | |||||
* | GroupAdd tests | Joffrey F | 2015-09-15 | 2 | -1/+36 | |
| | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | Merge pull request #767 from docker/group_add_support | Joffrey F | 2015-09-14 | 2 | -8/+22 | |
|\ | | | | | Support group_add param in host config | |||||
| * | Support group_add param in host configgroup_add_support | Joffrey F | 2015-09-15 | 2 | -8/+22 | |
|/ | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | Merge pull request #763 from docker/api_splitup | Maxime Petazzoni | 2015-09-13 | 9 | -1130/+1176 | |
|\ | | | | | API splitup | |||||
| * | Move client internals back to Client class. Remove obsolete ClientBase classapi_splitup | Joffrey F | 2015-09-11 | 3 | -293/+287 | |
| | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | Split different APIs into several mixins for clarity / easier maintenance | Joffrey F | 2015-09-11 | 8 | -874/+926 | |
| | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | | Back to dev version | Joffrey F | 2015-09-10 | 1 | -1/+1 | |
| | | ||||||
* | | Merge pull request #762 from docker/1.4.0-release1.4.0 | Joffrey F | 2015-09-10 | 3 | -6/+46 | |
|\ \ | |/ |/| | 1.4.0 release | |||||
| * | Fixed regression test in py3 environments1.4.0-release | Joffrey F | 2015-09-10 | 1 | -1/+4 | |
| | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | Updated changelog | Joffrey F | 2015-09-10 | 2 | -5/+42 | |
|/ | | | | | | Bumped version to 1.4.0 Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | Merge pull request #753 from docker/715-user-int-uid | Joffrey F | 2015-09-10 | 2 | -1/+7 | |
|\ | | | | | Always send a string for the user param in create_container | |||||
| * | Test UID validity715-user-int-uid | Joffrey F | 2015-08-31 | 1 | -1/+4 | |
| | | ||||||
| * | Use six.text_type | Joffrey F | 2015-08-31 | 1 | -1/+1 | |
| | | ||||||
| * | Always send a string for the user param in create_container | Joffrey F | 2015-08-31 | 2 | -1/+4 | |
| | | ||||||
* | | Merge pull request #760 from docker/ci-fixes | Joffrey F | 2015-09-09 | 2 | -17/+12 | |
|\ \ | | | | | | | CI fixes (wip) | |||||
| * | | Add hello-world to temp images in pull testsci-fixes | Joffrey F | 2015-09-09 | 1 | -0/+2 | |
| | | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
| * | | Make integration tests more CI-friendly. | Joffrey F | 2015-09-09 | 2 | -17/+10 | |
|/ / | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> | |||||
* | | Merge pull request #757 from docker/756-containerized-integration | Joffrey F | 2015-09-09 | 4 | -5/+21 | |
|\ \ | | | | | | | Containerized Integration | |||||
| * | | Update integration-dind task756-containerized-integration | Joffrey F | 2015-09-09 | 2 | -20/+8 | |
| | | | ||||||
| * | | Make running integration tests with dind possible | Joffrey F | 2015-09-09 | 5 | -5/+33 | |
| | | | ||||||
* | | | Add missing ipc_mode documentation | Joffrey F | 2015-09-09 | 1 | -0/+1 | |
|/ / | ||||||
* | | Merge pull request #755 from aanand/add-dnephin-and-mnowster | Joffrey F | 2015-09-02 | 1 | -0/+2 | |
|\ \ | | | | | | | Add @dnephin and @mnowster as maintainers | |||||
| * | | Add @dnephin and @mnowster as maintainers | Aanand Prasad | 2015-09-02 | 1 | -0/+2 | |
|/ / | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | |||||
* | | Merge pull request #754 from aanand/default-to-tcp-url-on-windows | Joffrey F | 2015-09-01 | 3 | -6/+19 | |
|\ \ | | | | | | | Default to 127.0.0.1:2375 on Windows | |||||
| * | | Default to 127.0.0.1:2375 on Windows | Aanand Prasad | 2015-09-01 | 3 | -6/+19 | |
| |/ | | | | | | | | | | | Following the logic of the Docker client. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | |||||
* | | Merge pull request #752 from docker/697-stricter-url-construction | Joffrey F | 2015-08-31 | 3 | -46/+79 | |
|\ \ | |/ |/| | Stricter url construction | |||||
| * | Test URL construction697-stricter-url-construction | Joffrey F | 2015-08-31 | 1 | -0/+22 | |
| | | ||||||
| * | url-quote user-provided param before inserting in URL. | Joffrey F | 2015-08-31 | 2 | -46/+57 | |
|/ | ||||||
* | Test has been fixed, remove skip decorator | Joffrey F | 2015-08-31 | 1 | -1/+0 | |
| | ||||||
* | Merge pull request #747 from aanand/integration-test-fixes | Joffrey F | 2015-08-31 | 4 | -49/+99 | |
|\ | | | | | Integration test improvements | |||||
| * | Integration test improvements | Aanand Prasad | 2015-08-31 | 4 | -49/+99 | |
| | | | | | | | | | | | | | | | | | | | | | | - Fix the setup step (the process has changed now that we're using pytest) - Skip tests that are unstable - Make better use of build caching Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> |