Skip to content

Commit 13f2928

Browse files
authored
Merge pull request #194 from fosslight/req_bug
Fix the scancode ver for macos
2 parents 2f61479 + 4c41acd commit 13f2928

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
pyparsing
2-
scancode-toolkit>=32.2.0
32
scanoss
43
XlsxWriter
5-
fosslight_util>=2.1.0
4+
fosslight_util>=2.1.1
65
PyYAML
76
wheel>=0.38.1
87
intbitset
98
fosslight_binary>=5.0.0
9+
scancode-toolkit==32.0.*;sys_platform=="darwin"
10+
scancode-toolkit==32.2.*;sys_platform!="darwin"
11+
psycopg2-binary==2.9.9

tests/test_tox.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def test_run():
3939

4040

4141
def test_help_command():
42-
success, _ = run_command("fosslight_source -h")
43-
assert success is True, "Test Release: Help command failed "
42+
success, msg = run_command("fosslight_source -h")
43+
assert success is True, f"Test Release: Help command failed :{msg}"
4444

4545

4646
def test_scan_command():

0 commit comments

Comments
 (0)