-
Notifications
You must be signed in to change notification settings - Fork 54
External Signing using CCID/PIV interface. #170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
710808b
8b17617
1362b1e
3b4d181
15bd268
393d39c
4e4bec6
1ba8f40
22feed2
f634e91
e3823c7
2edbc87
6cfd1b5
421b923
455aa87
3ef4016
ff2ad94
39d35cd
87e38cb
74d114c
549a712
24b320e
ecd92fe
fe4052d
234a827
80a63a7
55b6b7f
44fd232
83feb26
6b3c795
07c1c43
8f1404f
4cf3677
948f2a2
e505a1c
e85af21
a5cc882
c500679
cf026da
b81384a
9a14d84
2f0cd6a
34623e9
eb4f67e
e4bf9b5
bde1389
6396d3a
fb4a007
f944c75
3e0dbb1
7125d66
2a8feef
34e911a
3ec8042
bd60698
1367848
86529f4
7ad3b8d
131633e
d0f11e2
4ca1d2e
5ddb551
870e896
b6898f9
dbe3610
0020046
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ omit = | |
*/tests/* | ||
*/site-packages/* | ||
|
||
|
||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,18 @@ matrix: | |
before_install: | ||
- sudo apt-get remove -y --allow-remove-essential gnupg gnupg2 | ||
|
||
before_install: | ||
- sudo apt-get update | ||
- sudo apt-get install -y swig | ||
|
||
install: | ||
- pip install -U tox coveralls | ||
- wget https://dist.opendnssec.org/source/softhsm-2.3.0.tar.gz | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. softhsm is packaged in Ubuntu, is there any reason we can't use the version from the host OS here? https://packages.ubuntu.com/search?suite=xenial&searchon=names&keywords=softhsm There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, we can use the version from the host OS. I will update this, thanks for pointing this out. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ping |
||
- tar -xzf softhsm-2.3.0.tar.gz | ||
- cd softhsm-2.3.0 | ||
- ./configure | ||
- make | ||
- sudo make install | ||
tanishqjasoria marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
script: | ||
- tox | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# test runtime dependencies (see 'tests_require' field in setup.py) | ||
mock; python_version < "3.3" | ||
PyKCS11>=1.5.5; python_version > '3' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #209 shuffled the requirements files quite a bit, so there will be a few conflicts on a (necessary) rebase. I can help you with that if you want. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I already did a rebase and resolved the conflicts. |
||
|
||
# additional test tools | ||
coverage |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,4 @@ colorama | |
six | ||
python-dateutil | ||
subprocess32; python_version < '3' | ||
PyKCS11>=1.5.5; python_version > '3' |
Uh oh!
There was an error while loading. Please reload this page.