Projet

Général

Profil

0001-Update-install-and-test-infos-in-README.patch

Emmanuel Cazenave, 14 décembre 2017 17:14

Télécharger (1,03 ko)

Voir les différences:

Subject: [PATCH] Update 'install' and 'test' infos in README

 README | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
README
20 20

  
21 21
Install required Python packages:
22 22

  
23
    $ pip install -r requirements.txt
23
    $ pip install -e .
24 24

  
25 25
Initializing the database (quickstart: sqlite3)
26 26
-----------------------------------------------
27 27

  
28 28
To create the database, execute the following line:
29 29

  
30
    $ python manage.py syncdb --migrate
30
    $ python manage.py migrate
31 31

  
32 32
The new database is created inside `passerelle.sqlite3` in the current
33 33
directory.
......
60 60

  
61 61
To run a specific test under a specific environment.
62 62

  
63
  tox -e django17 -- tests/test_csv_datasource.py
63
  tox -e django18 -- tests/test_csv_datasource.py
64 64

  
65 65
LICENSES
66 66
========
67
-