Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,22 @@ jobs:
sudo pip3 install -r test/pip-requires.txt
PYTHONPATH=test python3 -m pytest test/scenario_test/mup_test.py --gobgp-image gobgp -x -s

bgp-ls:
name: bgp-ls
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v7
with:
path: artifact
- name: test
run: |
docker load < artifact/gobgp.tar
sudo apt-get install python3-setuptools
sudo pip3 install -r test/pip-requires.txt
PYTHONPATH=test python3 -m pytest test/scenario_test/bgp_ls_test.py --gobgp-image gobgp -x -s

tcp-md5:
name: tcp-md5
runs-on: ubuntu-24.04
Expand Down
Loading