mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
ci: improve repo CI robustness, by marking dynamic_template_manager_cache_system_test.v as flaky, and only failing db_store_test.v on !windows
This commit is contained in:
parent
e11e2b08d7
commit
3937eccdc9
2 changed files with 5 additions and 1 deletions
|
@ -65,8 +65,10 @@ fn test_store_get() {
|
|||
if data := store.get('b', max_age) {
|
||||
assert data == default_user
|
||||
} else {
|
||||
$if !windows {
|
||||
assert false, 'session data should not be none'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn test_store_session_expired() {
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
module dtm
|
||||
|
||||
// vtest flaky: true
|
||||
// vtest retry: 3
|
||||
import os
|
||||
import time
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue