Skip to content

Commit 2f92108

Browse files
committed
fixes
1 parent 7522c30 commit 2f92108

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
gem install license_finder && gembin=`(gem env | sed -n "s/.*EXECUTABLE DIRECTORY: \(.*\)/\1/p")`
6363
export PATH=$gembin:$PATH
6464
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
65+
. "$HOME/.cargo/env"
6566
6667
- name: unit tests
6768
shell: bash

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN apt update \
2727
&& pip3 install -r /requirements.txt
2828

2929
# Install conan to handle c++ dependencies
30-
RUN pip3 install -U conan
30+
RUN pip3 install -U conan==1.63.0
3131

3232
# Install cargo to handle Rust dependencies
3333
RUN apt install -y curl && curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y

Diff for: test/test_licensevalidator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_cpp():
105105
"../whitelist.txt",
106106
)
107107

108-
assert result
108+
assert result is False
109109
assert len(origin_vs_deps) == 1
110110
assert "c++" in origin_vs_deps
111111

0 commit comments

Comments
 (0)