diff options
author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-05-10 18:51:51 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-05-11 13:14:26 +0200 |
commit | 9ce686504743ff65ed0ca5ad2d8f10d35519041a (patch) | |
tree | b0e432c4b3327c00de667ab88246798a4fd75647 /.travis.yml | |
parent | doc: Require topotests directory to be consistent with others (diff) | |
download | frr-9ce686504743ff65ed0ca5ad2d8f10d35519041a.tar.xz frr-9ce686504743ff65ed0ca5ad2d8f10d35519041a.zip |
tools: Fix topotest directory for Travis
ospf1-topo1 => ospf1_topo1
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d8e450a64..32b686c00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ jobs: - docker ps - docker exec frr-ubuntu18 bash -c 'cd ~/frr ; make check' - docker exec frr-ubuntu18 bash -c 'ps agxu ; lsmod | grep mpls || true' - - docker exec frr-ubuntu18 bash -c 'cd ~/frr/tests/topotests/ospf-topo1 ; sudo pytest test_ospf_topo1.py' + - docker exec frr-ubuntu18 bash -c 'cd ~/frr/tests/topotests/ospf_topo1 ; sudo pytest test_ospf_topo1.py' - docker exec frr-ubuntu18 bash -c 'cd ~/frr/tests/topotests/bgp_l3vpn_to_bgp_vrf ; sudo pytest test_bgp_l3vpn_to_bgp_vrf.py' name: ubuntu18+minimalCI - script: @@ -34,7 +34,7 @@ jobs: - docker ps - docker exec frr-ubuntu20 bash -c 'cd ~/frr ; make check' - docker exec frr-ubuntu20 bash -c 'ps agxu ; lsmod | grep mpls || true' - - docker exec frr-ubuntu20 bash -c 'cd ~/frr/tests/topotests/ospf-topo1 ; sudo pytest test_ospf_topo1.py' + - docker exec frr-ubuntu20 bash -c 'cd ~/frr/tests/topotests/ospf_topo1 ; sudo pytest test_ospf_topo1.py' - docker exec frr-ubuntu20 bash -c 'cd ~/frr/tests/topotests/bgp_l3vpn_to_bgp_vrf ; sudo pytest test_bgp_l3vpn_to_bgp_vrf.py' name: ubuntu20+minimalCI |