Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
josch committed Jan 13, 2025
1 parent dc89fd4 commit 72e6599
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y pbzip2 pigz lzop liblz4-tool libgpgme11-dev gpg gpgv python3-gpg
sudo apt-get install -y pbzip2 pigz lzop liblz4-tool libgpgme11-dev python3-gpg
python -m pip install --upgrade pip
pip install build
- name: Build package
Expand Down
9 changes: 5 additions & 4 deletions tests/test_CLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,11 @@ def test_clearsign(self):
)

def setUp(self):
try:
import gpg
except ImportError:
self.skipTest("python module 'gpg' missing")
import gpg
#try:
# import gpg
#except ImportError:
# self.skipTest("python module 'gpg' missing")

os.makedirs("tests/test-data/signatures", exist_ok=True)
for gnupghome, userid in [
Expand Down

0 comments on commit 72e6599

Please sign in to comment.