Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add job_tags and max_execution_time to options #510

Closed
wants to merge 17 commits into from
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
kt474 committed Oct 4, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2fc4e657db7e9e82f55e34edd0bb25c369171b41
8 changes: 6 additions & 2 deletions test/ibm_test_case.py
Original file line number Diff line number Diff line change
@@ -203,8 +203,12 @@ def _run_program(
backend_name = (
backend if backend is not None else self.sim_backends[service.channel]
)
options = {"backend": backend_name, "log_level": log_level,'job_tags': job_tags,
'max_execution_time': max_execution_time}
options = {
"backend": backend_name,
"log_level": log_level,
"job_tags": job_tags,
"max_execution_time": max_execution_time,
}
job = service.run(
program_id=pid,
inputs=inputs,