File tree Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Original file line number Diff line number Diff line change
1
+ 0.6.0 / 2017-06-19
2
+ ==================
3
+ * Added: Python 3 compatibility
4
+ * Fixed: Non running tests
5
+
1
6
0.5.2 / 2017-02-02
2
7
==================
3
8
* Fixed: packaging for Pypi
Original file line number Diff line number Diff line change @@ -121,3 +121,20 @@ ox = ox3apiclient.Client(
121
121
122
122
ox.logon(email, password)
123
123
````
124
+
125
+ # To run these tests. Install nose (pip install nose)
126
+ # and run nosetests -sxv tests/ from the root dir
127
+
128
+ ## Tests
129
+
130
+ Install nose
131
+
132
+ ```` bash
133
+ pip install nose
134
+ ````
135
+
136
+ and run the following command line from the root:
137
+
138
+ ```` bash
139
+ nosetests -sxv tests/
140
+ ````
Original file line number Diff line number Diff line change @@ -183,9 +183,3 @@ def test_upload_creative(self):
183
183
self .assertEqual (ret_val , {'key1' : 'value1' ,
184
184
'key2' : 'value2' ,
185
185
'key3' : 'value3' })
186
-
187
-
188
- if __name__ == '__main__' :
189
- # To run these tests. Install nose (pip install nose)
190
- # and run nosetests -sxv tests/ from the root dir
191
- unittest .main ()
Original file line number Diff line number Diff line change @@ -90,9 +90,3 @@ def test_loads_optional_options(self):
90
90
loaded_values .sort ()
91
91
92
92
self .assertEqual (loaded_values , test_values )
93
-
94
-
95
- if __name__ == '__main__' :
96
- # To run these tests. Install nose (pip install nose)
97
- # and run nosetests -sxv tests/ from the root dir
98
- unittest .main ()
You can’t perform that action at this time.
0 commit comments