Skip to content

Commit

Permalink
attempt python 3.6 basic coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jun 9, 2024
1 parent 5cab9de commit 42cb78c
Show file tree
Hide file tree
Showing 2 changed files with 534 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,23 @@ jobs:
- name: Configuration Parsing Checks
run: |
./qa/bin/functional parsing
if [[ $(python3 --version | grep -v "3.6") ]]; then ./qa/bin/functional parsing; fi
- name: Functional Checks
run: |
./qa/bin/functional encoding
if [[ $(python3 --version | grep -v "3.6") ]]; then ./qa/bin/functional encoding; fi
- name: Decoding Checks
run: |
./qa/bin/functional decoding
if [[ $(python3 --version | grep -v "3.6") ]]; then ./qa/bin/functional decoding; fi
- name: Test Coverage
run: |
env PYTHONPATH=src exabgp_log_enable=false pytest --cov --cov-reset ./tests/*_test.py
if [[ $(python3 --version | grep -v "3.6") ]]; then env PYTHONPATH=src exabgp_log_enable=false pytest --cov --cov-reset ./tests/*_test.py; fi
- name: Python 3.6 Coverage
run: |
if [[ $(python3 --version | grep "3.6") ]]; then ./qa/bin/functional run; fi
# - name: Coveralls
# run: |
Expand Down
Loading

0 comments on commit 42cb78c

Please sign in to comment.