File tree 3 files changed +44
-1
lines changed
3 files changed +44
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## v1.3.0:
2
+
3
+ ### Bug
4
+
5
+ - [ COOK-2376] : Python pip default action
6
+ - [ COOK-2468] : python cookbook - Chef 11 compat fixes
7
+ - [ COOK-2882] : Python source recipe fails on Ubuntu 12.10 because of unavailable libdb4.8-dev package
8
+ - [ COOK-3009] : fix build time dependencies and gcc flags for python source on newer ubuntus
9
+
10
+ ### New Feature
11
+
12
+ - [ COOK-2449] : Make the distribute download location an attribute
13
+ - [ COOK-3008] : Update python::source to install 2.7.5
14
+
15
+ ### Sub-task
16
+
17
+ - [ COOK-2866] : python::source checks existence of a directory that already exists
18
+
1
19
## v1.2.2:
2
20
3
21
* [ COOK-2297] - more gracefully handle pip packages from VCS and
Original file line number Diff line number Diff line change
1
+ This cookbook includes support for running tests via Test Kitchen (1.0). This has some requirements.
2
+
3
+ 1 . You must be using the Git repository, rather than the downloaded cookbook from the Chef Community Site.
4
+ 2 . You must have Vagrant 1.1 installed.
5
+ 3 . You must have a "sane" Ruby 1.9.3 environment.
6
+
7
+ Once the above requirements are met, install the additional requirements:
8
+
9
+ Install the berkshelf plugin for vagrant, and berkshelf to your local Ruby environment.
10
+
11
+ vagrant plugin install vagrant-berkshelf
12
+ gem install berkshelf
13
+
14
+ Install Test Kitchen 1.0 (unreleased yet, use the alpha / prerelease version).
15
+
16
+ gem install test-kitchen --pre
17
+
18
+ Install the Vagrant driver for Test Kitchen.
19
+
20
+ gem install kitchen-vagrant
21
+
22
+ Once the above are installed, you should be able to run Test Kitchen:
23
+
24
+ kitchen list
25
+ kitchen test
Original file line number Diff line number Diff line change 3
3
maintainer_email "[email protected] "
4
4
license "Apache 2.0"
5
5
description "Installs Python, pip and virtualenv. Includes LWRPs for managing Python packages with `pip` and `virtualenv` isolated Python environments."
6
- version "1.2.3 "
6
+ version "1.3.0 "
7
7
8
8
depends "build-essential"
9
9
depends "yum"
You can’t perform that action at this time.
0 commit comments