summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2021-01-09 07:38:08 -0800
committerSteve Piercy <web@stevepiercy.com>2021-01-09 07:38:08 -0800
commit8143e8679b5025a648272ec17942307c243c59b5 (patch)
tree89ff4841db16fb630f075d0c2ea6a43bd7bac73e
parent84672a3c592a3d0cdcdec549dcd72c226d938694 (diff)
downloadpyramid-8143e8679b5025a648272ec17942307c243c59b5.tar.gz
pyramid-8143e8679b5025a648272ec17942307c243c59b5.tar.bz2
pyramid-8143e8679b5025a648272ec17942307c243c59b5.zip
Update Quick Tutorial cookiecutter step
-rw-r--r--docs/quick_tutorial/cookiecutters/.gitignore3
-rw-r--r--docs/quick_tutorial/cookiecutters/README.txt7
-rw-r--r--docs/quick_tutorial/cookiecutters/pytest.ini2
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