Plugin¶
QasePlugin
¶
Pytest plugin for reporting tests result to Qase.
Source code in pytest_qaseio/plugin.py
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
__init__(browser, file_storage, config)
¶
Save used browser for run's name and folder name.
Source code in pytest_qaseio/plugin.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
pytest_collection_modifyitems(items)
¶
Create test run in qase.
Source code in pytest_qaseio/plugin.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | |
pytest_runtest_makereport(item)
¶
Represent standard pytest hook on test completion.
At this hook we will report passed, skipped and failed tests.
Source code in pytest_qaseio/plugin.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | |
pytest_sessionstart(session)
¶
Clear previously saved run, prepare lock file.
Source code in pytest_qaseio/plugin.py
184 185 186 187 188 189 190 | |
pytest_addhooks(pluginmanager)
¶
Add hooks for plugin.
Source code in pytest_qaseio/plugin.py
43 44 45 46 47 | |
pytest_addoption(parser)
¶
Add custom args to command line.
Source code in pytest_qaseio/plugin.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | |
pytest_configure(config)
¶
Configure pytest-qaseio plugin.
Add qase marker for pytest.
If qase enabled, register qase plugin.
Get file storage for qase plugin.
Source code in pytest_qaseio/plugin.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | |
pytest_get_debug_info(item)
¶
Try to get selenium debug info object.
Source code in pytest_qaseio/plugin.py
87 88 89 90 91 92 93 94 | |
pytest_get_run_name(config, env, browser)
¶
Return name for test run to use in Qase.
Default option if --qase-run-name not specified:
(Dev) Automated Test Run Edge 07/23/2025 18:06:37
Source code in pytest_qaseio/plugin.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | |
pytest_qase_browser_name(config)
¶
Try to get browser name from webdriver pytest option.
Source code in pytest_qaseio/plugin.py
81 82 83 84 | |
pytest_qase_file_storages()
¶
Provide mapping of available file storages for qase debug files.
Source code in pytest_qaseio/plugin.py
70 71 72 73 74 75 76 77 78 | |