From b6ab5770a2148398b5740ee71a309ad8723b45a5 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 20 Dec 2014 15:30:48 +0100 Subject: [PATCH] Lets see if this works. --- .travis.yml | 1 + README.md | 8 +++++--- tests/_data/db.sh | 4 ++++ 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 tests/_data/db.sh diff --git a/.travis.yml b/.travis.yml index f1e46cab20..7638995c02 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ install: - composer install script: + - ./tests/_data/db.sh - php vendor/bin/codecept build - php vendor/bin/codecept run --coverage --coverage-xml diff --git a/README.md b/README.md index f0777c39f1..bf34ed9ef3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Firefly III =========== -[![Build Status](https://travis-ci.org/JC5/firefly-iii.svg?branch=master)](https://travis-ci.org/JC5/firefly-iii) +[![Build Status](https://travis-ci.org/JC5/firefly-iii.svg?branch=develop)](https://travis-ci.org/JC5/firefly-iii) [![Project Status](http://stillmaintained.com/JC5/firefly-iii.png?a=b)](http://stillmaintained.com/JC5/firefly-iii) [![Latest Stable Version](https://poser.pugx.org/grumpydictator/firefly-iii/v/stable.svg)](https://packagist.org/packages/grumpydictator/firefly-iii) @@ -17,13 +17,15 @@ laptop and [Firefly II](https://github.com/JC5/Firefly) is live. ## Current features -- [A double-entry bookkeeping system](http://en.wikipedia.org/wiki/Double-entry_bookkeeping_system). +- [A double-entry bookkeeping system](http://en.wikipedia.org/wiki/Double-entry_bookkeeping_system); - You can store, edit and remove withdrawals, deposits and transfers. This allows you full financial management; - It's possible to create, change and manage money using _budgets_; - Organize transactions using categories; - Save towards a goal using piggy banks; - Predict and anticipate large expenses using "repeated expenses" (ie. yearly taxes); -- Predict and anticipate bills using "recurring transactions" (rent for example). +- Predict and anticipate bills using "recurring transactions" (rent for example); +- View basic income / expense reports. +- Everything is organised: diff --git a/tests/_data/db.sh b/tests/_data/db.sh new file mode 100644 index 0000000000..d63b884d99 --- /dev/null +++ b/tests/_data/db.sh @@ -0,0 +1,4 @@ +#!/bin/bash +touch tests/_data/db.sqlite +php artisan migrate --seed --env=testing +sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql