Skip to content

Commit

Permalink
gtri#2: combine tests and combine
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Feb 3, 2019
1 parent bf75c6b commit fb95198
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 26 deletions.
2 changes: 1 addition & 1 deletion ci/job.combine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
inputs:
artifactName: Test Output Windows
targetPath: _testoutput
- script: python -m scripts.combine
- script: python -m scripts.test combine
condition: always()
displayName: Rebot
- task: PublishBuildArtifacts@1
Expand Down
24 changes: 0 additions & 24 deletions scripts/combine.py

This file was deleted.

14 changes: 13 additions & 1 deletion scripts/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,19 @@ def acceptance(robot_args):


def combine(rebot_args):
run(["python", "-m", "scripts.combine"] + rebot_args)
args = [
"python",
"-m",
"robot.rebot",
"--name",
"IRobotFramework",
"--outputdir",
str(TEST_OUT / "robot"),
"--output",
"index.xml",
] + rebot_args + list(map(str, (TEST_OUT / "robot").glob("*.xml")))

return run(args)


TESTS = [
Expand Down

0 comments on commit fb95198

Please sign in to comment.