Skip to content

Commit

Permalink
add python venv
Browse files Browse the repository at this point in the history
  • Loading branch information
dmachard committed Nov 3, 2024
1 parent 670dcd4 commit f0bfd28
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/testing-dnstap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ jobs:
- name: Test ${{ matrix.mode }}
run: |
sudo python3 -m pip install dnstap_pb fstrm dnspython
sudo python3 -m pip install --upgrade protobuf
sudo python3 -m unittest tests.dnsquery_dnstap${{ matrix.mode }} -v
python3 -m venv venv
source venv/bin/activate
python3 -m pip install dnstap_pb fstrm dnspython
python3 -m pip install --upgrade protobuf
python3 -m unittest tests.dnsquery_dnstap${{ matrix.mode }} -v
coredns:
runs-on: ubuntu-latest
Expand Down

0 comments on commit f0bfd28

Please sign in to comment.