Skip to content

Latest commit

 

History

History
86 lines (50 loc) · 1.88 KB

CONTRIBUTING.rst

File metadata and controls

86 lines (50 loc) · 1.88 KB

Contributing

Contributions are very welcome and highly appreciated!

Setup you dev environment

1 - First create a python development virtualenv

$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt -r requirements-dev.txt -r requirements-extra.txt

2 - Install docker and docker-compose

Run tests

Contributions for new features or fixes should have tests associated. To verify that all tests are green you can run a subset of tests targeting only Postgres.

1 - Start Postgres

$ docker-compose up -d

2 - Run Postgres tests

$ nose2 -c setup.cfg -A '!mongo' tests

You can also use tox

$ tox -e postgres

4 - Code Formatting

$ black flask_appbuilder tests
$ flake8 flask_appbuilder tests

Run a single test

Using Postgres

1 - Stop and delete Postgres volume, then restart

$ docker-compose down -v
$ docker-compose up -d

2 - Export the connection string

$ export SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://pguser:pguserpassword@0.0.0.0/app

4 - To run a single test

$ nose2 -v tests.test_api.APITestCase.test_get_item_dotted_mo_notation

Note

If your using SQLite3, the location of the db is: ./tests/app.db You can safely delete it, if you need to delete test data for example.

Responsible disclosure of Security Vulnerabilities

We want to keep Flask-AppBuilder safe for everyone. If you've discovered a security vulnerability please report to danielvazgaspar@gmail.com. Reporting security vulnerabilities through the usual GitHub Issues channel is not ideal as it will publicize the flaw before a fix can be applied.