We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 464d2ce commit 15682acCopy full SHA for 15682ac
README.md
@@ -23,22 +23,25 @@ if client.login(username, password):
23
24
DOCS
25
----
26
-
27
- - Please refer to docstrings and tests
+
+Please refer to docstrings and tests
28
29
30
TESTING
31
-------
32
33
- - Create a file named `accounts.py`
34
- - put settings in this file::
35
36
- accounts = [
37
- {
38
- 'username': 'USERNAME',
39
- 'password': 'PASSWORD',
40
- 'test_domain': 'DOMAIN.NAME',
41
- },
42
- ]
43
44
- - run `nosetests tests` in root directory
+Create a file in `tests/accounts.py`
+Put settings in this file
+```python
+accounts = [
+ {
+ 'username': 'USERNAME',
+ 'password': 'PASSWORD',
+ 'test_domain': 'DOMAIN.NAME',
+ },
+]
45
+```
46
47
+run `nosetests tests` in root directory
0 commit comments