[py-svn] r6963 - py/dist/doc

hpk at codespeak.net hpk at codespeak.net
Sun Oct 17 05:12:14 CEST 2004


Author: hpk
Date: Sun Oct 17 05:12:13 2004
New Revision: 6963

Added:
   py/dist/doc/style.css
Modified:
   py/dist/doc/test.txt
Log:
small bit about test configuration and 
a css file 


Added: py/dist/doc/style.css
==============================================================================
--- (empty file)
+++ py/dist/doc/style.css	Sun Oct 17 05:12:13 2004
@@ -0,0 +1,76 @@
+body {
+    background: url(http://codespeak.net/img/codespeak1b.png) no-repeat fixed;
+    font: 120% Arial, Verdana, Helvetica, sans-serif;
+    border: 0;
+    margin: 0.5em 0em 0.5em 1.5em;
+    padding: 0 0 0 127px; 
+}
+
+a {
+	text-decoration: underline;
+    background-color: transparent;
+}
+
+p {
+    /*margin: 0.5em 0em 1em 0em;*/
+    text-align: left;
+    line-height: 1.5em;
+    margin: 0.5em 0em 0em 0em;
+}
+
+p a {
+    text-decoration: underline;
+}
+
+
+p a:active {
+	color: Red;
+    background-color: transparent;
+}
+
+hr {
+    clear: both;
+    height: 1px;
+    color: #8CACBB;
+    background-color: transparent;
+}
+
+
+ul { 
+    line-height: 1.5em;
+    /*list-style-image: url("bullet.gif"); */
+    margin-left: 1em;
+    padding:0;
+}
+
+ol {
+    line-height: 1.5em;
+    margin-left: 0em;
+    padding:0;
+}
+
+ul a, ol a {
+    text-decoration: underline;
+}
+
+blockquote {
+    font-family: Times, "Times New Roman", serif;
+    font-style: italic;
+    font-size: 120%;
+}
+
+code {
+    font-size: 120%;
+    color: Black;
+    /*background-color: #dee7ec;*/
+    background-color: #cccccc;
+}
+
+pre {
+    font-size: 120%;
+    padding: 1em;
+    border: 1px solid #8cacbb;
+    color: Black;
+    background-color: #dee7ec;
+    background-color: #cccccc;
+}

Modified: py/dist/doc/test.txt
==============================================================================
--- py/dist/doc/test.txt	(original)
+++ py/dist/doc/test.txt	Sun Oct 17 05:12:13 2004
@@ -209,7 +209,7 @@
     |___________________|                        |________________|
                                           
                         .......................
-                        .     "utest.conf"    .
+                        .    configuration    .
                         .   cmdline options   .
                         .......................
 
@@ -220,6 +220,19 @@
 *reporter* instance.  
 
 
+Configuration 
+-------------
+
+``py.test`` detects and honours ``pytest.py`` configuration files 
+that can stack in your filesystem.  The following configuration
+values are currently recognized: 
+
+    pythonexecutables   a sequence of strings which represent 
+                        a python executable, e.g. ('python2.2',)
+    
+For configuration values the upmost ``pytest.py`` has the top
+priority.  For example, you can specify 
+
 Collectors and the test collection process 
 ------------------------------------------
 



More information about the pytest-commit mailing list