Skip to content

Commit

Permalink
Pass the version as an argument
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Feb 16, 2021
1 parent 6c960ae commit 8a0ffcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-compose.yml
Expand Up @@ -40,6 +40,7 @@ services:
- SSLKEYLOGFILE=/logs/keys.log
- QLOGDIR=/logs/qlog/
- TESTCASE=$TESTCASE_SERVER
- VERSION=$VERSION
depends_on:
- sim
cap_add:
Expand Down Expand Up @@ -68,6 +69,7 @@ services:
- QLOGDIR=/logs/qlog/
- TESTCASE=$TESTCASE_CLIENT
- REQUESTS=$REQUESTS
- VERSION=$VERSION
depends_on:
- sim
cap_add:
Expand Down
1 change: 1 addition & 0 deletions interop.py
Expand Up @@ -352,6 +352,7 @@ def _run_test(
"CLIENT=" + self._implementations[client]["image"] + " "
"SERVER=" + self._implementations[server]["image"] + " "
'REQUESTS="' + reqs + '" '
'VERSION="' + testcases.QUIC_VERSION + '" '
).format(testcase.scenario())
params += " ".join(testcase.additional_envs())
containers = "sim client server " + " ".join(testcase.additional_containers())
Expand Down

0 comments on commit 8a0ffcc

Please sign in to comment.