File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 48
48
pip install -e .
49
49
pip install -r requirements.d/dev.txt
50
50
51
- - name : Setup tmate session
52
- uses : mxschmitt/action-tmate@v1
51
+ # - name: Setup tmate session
52
+ # uses: mxschmitt/action-tmate@v1
53
53
54
54
- name : Test with pytest (Linux)
55
55
if : runner.os == 'Linux'
62
62
pytest
63
63
64
64
- name : Upload coverage to Codecov
65
+ if : runner.os == 'Linux'
65
66
uses : codecov/codecov-action@v1
66
67
env :
67
68
OS : ${{ runner.os }}
Original file line number Diff line number Diff line change @@ -290,6 +290,7 @@ def cancel(self):
290
290
self .process .terminate ()
291
291
mutex .unlock ()
292
292
self .terminate ()
293
+ self .wait ()
293
294
294
295
def process_result (self , result ):
295
296
pass
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ def get_keyring(cls):
16
16
Choose available Keyring or save passwords to settings database.
17
17
18
18
Will always use Keychain on macOS. Will try KWallet and then Secret
19
- Storage on Linux and *BSD. If non are available or usage of system keychain
20
- is disabled, fall back to saving passwords to DB.
19
+ Storage on Linux and *BSD. If none are available or usage of system
20
+ keychain is disabled, fall back to saving passwords to DB.
21
21
"""
22
22
23
23
from vorta .models import SettingsModel
Original file line number Diff line number Diff line change 1
- import pytest
1
+ import os
2
2
import peewee
3
+ import pytest
3
4
import sys
4
- import os
5
5
from datetime import datetime as dt
6
6
from unittest .mock import MagicMock
7
7
You can’t perform that action at this time.
0 commit comments