diff options
| -rw-r--r-- | docs/quick_tutorial/cookiecutters/.gitignore | 3 | ||||
| -rw-r--r-- | docs/quick_tutorial/cookiecutters/README.txt | 7 | ||||
| -rw-r--r-- | docs/quick_tutorial/cookiecutters/pytest.ini | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/docs/quick_tutorial/cookiecutters/.gitignore b/docs/quick_tutorial/cookiecutters/.gitignore index 1853d983c..e9336274d 100644 --- a/docs/quick_tutorial/cookiecutters/.gitignore +++ b/docs/quick_tutorial/cookiecutters/.gitignore @@ -11,7 +11,7 @@ dist/ nosetests.xml env*/ tmp/ -Data.fs* +Data*.fs* *.sublime-project *.sublime-workspace .*.sw? @@ -19,3 +19,4 @@ Data.fs* .DS_Store coverage test +*.sqlite diff --git a/docs/quick_tutorial/cookiecutters/README.txt b/docs/quick_tutorial/cookiecutters/README.txt index 55c5dcec6..74a86520c 100644 --- a/docs/quick_tutorial/cookiecutters/README.txt +++ b/docs/quick_tutorial/cookiecutters/README.txt @@ -4,15 +4,16 @@ cc_starter Getting Started --------------- -- Change directory into your newly created project. +- Change directory into your newly created project if not already there. Your + current directory should be the same as this README.txt file and setup.py. cd cc_starter -- Create a Python virtual environment. +- Create a Python virtual environment, if not already created. python3 -m venv env -- Upgrade packaging tools. +- Upgrade packaging tools, if necessary. env/bin/pip install --upgrade pip setuptools diff --git a/docs/quick_tutorial/cookiecutters/pytest.ini b/docs/quick_tutorial/cookiecutters/pytest.ini index 515cc3cf0..b678eef00 100644 --- a/docs/quick_tutorial/cookiecutters/pytest.ini +++ b/docs/quick_tutorial/cookiecutters/pytest.ini @@ -1,5 +1,5 @@ [pytest] -addopts = --strict +addopts = --strict-markers testpaths = cc_starter |
