From 4078ef8ef5ff2a0e7c3affd0607db08cfd64e03f Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 6 Feb 2014 13:06:10 +0530 Subject: [PATCH 1/3] add travis build script --- .travis.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..c6402feace --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +anguage: python + +python: + - "2.7" + +services: + - mysql + +install: + - pip install git+https://github.com/webnotes/wnframework.git@4.0.0-wip && + - pip install --editable . + +script: + cd ./test_sites/ && + webnotes --reinstall -v test_site && + webnotes --install_app erpnext -v test_site && + webnotes --run_tests -v test_site --app erpnext + +branches: + except: + - develop + - master + - 3.x.x + - slow + - webshop_refactor + +before_script: + - mysql -e 'create database travis' && + - echo "USE mysql;\nUPDATE user SET password=PASSWORD('travis') WHERE user='travis';\nFLUSH PRIVILEGES;\n" | mysql -u root + From 70e2a50f0f7f321dd5fdcfc740e2089a4c2f5239 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 6 Feb 2014 14:07:15 +0530 Subject: [PATCH 2/3] fix travis build script typo --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c6402feace..41ba344237 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -anguage: python +language: python python: - "2.7" From 07d4c373f36491c8db4621f97259638b2aec317c Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 6 Feb 2014 15:57:11 +0600 Subject: [PATCH 3/3] bumped to version 3.8.3 --- config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 149f7a9c36..dba2e815f8 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "app_name": "ERPNext", - "app_version": "3.8.2", + "app_version": "3.8.3", "base_template": "app/portal/templates/base.html", "modules": { "Accounts": { @@ -74,5 +74,5 @@ "type": "module" } }, - "requires_framework_version": "==3.9.1" + "requires_framework_version": "==3.9.2" } \ No newline at end of file