Skip to content

Commit

Permalink
fix: Skip jobs integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijc committed Nov 29, 2021
1 parent 92b9001 commit d52edf3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/integ_tests/test_create_local_quantum_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from braket.jobs.local import LocalQuantumJob


@pytest.mark.skip()
def test_completed_local_job(aws_session, capsys):
"""Asserts the job is completed with the respective files and folders for logs,
results and checkpoints. Validate the results are what we expect. Also,
Expand Down Expand Up @@ -102,6 +103,7 @@ def test_completed_local_job(aws_session, capsys):
os.chdir(current_dir)


@pytest.mark.skip()
def test_failed_local_job(aws_session, capsys):
"""Asserts the job is failed with the output, checkpoints not created in bucket
and only logs are populated. Validate the calling result function raises
Expand Down
4 changes: 4 additions & 0 deletions test/integ_tests/test_create_quantum_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
import tempfile
from pathlib import Path

import pytest

from braket.aws.aws_quantum_job import AwsQuantumJob


@pytest.mark.skip()
def test_failed_quantum_job(aws_session, capsys):
"""Asserts the job is failed with the output, checkpoints,
tasks not created in bucket and only input is uploaded to s3. Validate the
Expand Down Expand Up @@ -75,6 +78,7 @@ def test_failed_quantum_job(aws_session, capsys):
)


@pytest.mark.skip()
def test_completed_quantum_job(aws_session, capsys):
"""Asserts the job is completed with the output, checkpoints, tasks and
script folder created in S3 for respective job. Validate the results are
Expand Down

0 comments on commit d52edf3

Please sign in to comment.