File tree 4 files changed +7
-8
lines changed
4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -76,11 +76,11 @@ jobs:
76
76
protoc --version
77
77
osivalidator --help
78
78
79
- - name : Test lzma decompression and compression
79
+ - name : Test lzma compression and decompression
80
80
shell : bash
81
81
run : |
82
- lzma -d data/small_test.txt.lzma
83
82
lzma -z data/small_test.txt
83
+ lzma -d data/small_test.txt.lzma
84
84
85
85
- name : Run tests
86
86
shell : bash
93
93
- name : Run validator with different options
94
94
shell : bash
95
95
run : |
96
- lzma -d data/small_test.txt.lzma
97
96
python open-simulation-interface/format/txt2osi.py -d data/small_test.txt
98
97
99
98
osivalidator data/small_test.osi
Original file line number Diff line number Diff line change
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9b7c2acd6ac3a3d222bda3bea7615e9dfd67c7e4b2d36c80034043417ac8a62
3
+ size 6180
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,10 +16,9 @@ def setUp(self):
16
16
self .osi_nobuffer = OSITrace (buffer_size = 0 )
17
17
18
18
self .txt .from_file (
19
- path = "data/small_test.txt.lzma " ,
19
+ path = "data/small_test.txt" ,
20
20
type_name = "SensorView" ,
21
21
)
22
- subprocess .call (["lzma" , "-d" , "data/small_test.txt.lzma" ])
23
22
subprocess .call (
24
23
[
25
24
"python3" ,
@@ -47,6 +46,7 @@ def tearDown(self):
47
46
48
47
subprocess .call (["rm" , "data/small_test.osi.lzma" ])
49
48
subprocess .call (["rm" , "data/small_test.osi" ])
49
+ subprocess .call (["lzma" , "-d" , "data/small_test.txt.lzma" ])
50
50
51
51
def test_get_messages_in_index_range (self ):
52
52
"""Test getting messages in range"""
You can’t perform that action at this time.
0 commit comments