diff --git a/.github/workflows/update-s2s.yml b/.github/workflows/update-s2s.yml index 39dc7e3..43f3f95 100644 --- a/.github/workflows/update-s2s.yml +++ b/.github/workflows/update-s2s.yml @@ -63,9 +63,9 @@ jobs: id: tests run: | if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis ivyllc/ivy:latest ivy-integration-tests/update_s2s.sh kornia ${{ matrix.file }} testing-nightly ${{ matrix.compile }} ${{ matrix.target }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_API_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis ivyllc/ivy:latest ivy-integration-tests/update_s2s.sh test_kornia ${{ matrix.file }} testing-nightly ${{ matrix.compile }} ${{ matrix.target }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_API_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis ivyllc/ivy:latest ivy-integration-tests/update_s2s.sh kornia ${{ matrix.file }} testing-nightly ${{ matrix.compile }} ${{ matrix.target }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_API_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis ivyllc/ivy:latest ivy-integration-tests/update_s2s.sh test_kornia ${{ matrix.file }} testing-nightly ${{ matrix.compile }} ${{ matrix.target }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_API_KEY }} fi - name: Prepare Artifact Name diff --git a/kornia/augmentation/test_augmentation1.py b/test_kornia/augmentation/test_augmentation1.py similarity index 100% rename from kornia/augmentation/test_augmentation1.py rename to test_kornia/augmentation/test_augmentation1.py diff --git a/kornia/augmentation/test_augmentation2.py b/test_kornia/augmentation/test_augmentation2.py similarity index 100% rename from kornia/augmentation/test_augmentation2.py rename to test_kornia/augmentation/test_augmentation2.py diff --git a/kornia/augmentation/test_augmentation3.py b/test_kornia/augmentation/test_augmentation3.py similarity index 100% rename from kornia/augmentation/test_augmentation3.py rename to test_kornia/augmentation/test_augmentation3.py diff --git a/kornia/augmentation/test_augmentation4.py b/test_kornia/augmentation/test_augmentation4.py similarity index 100% rename from kornia/augmentation/test_augmentation4.py rename to test_kornia/augmentation/test_augmentation4.py diff --git a/kornia/augmentation/test_auto.py b/test_kornia/augmentation/test_auto.py similarity index 100% rename from kornia/augmentation/test_auto.py rename to test_kornia/augmentation/test_auto.py diff --git a/kornia/augmentation/test_container.py b/test_kornia/augmentation/test_container.py similarity index 100% rename from kornia/augmentation/test_container.py rename to test_kornia/augmentation/test_container.py diff --git a/kornia/geometry/test_bbox.py b/test_kornia/geometry/test_bbox.py similarity index 100% rename from kornia/geometry/test_bbox.py rename to test_kornia/geometry/test_bbox.py diff --git a/kornia/geometry/test_boxes.py b/test_kornia/geometry/test_boxes.py similarity index 100% rename from kornia/geometry/test_boxes.py rename to test_kornia/geometry/test_boxes.py diff --git a/kornia/geometry/test_calibration.py b/test_kornia/geometry/test_calibration.py similarity index 100% rename from kornia/geometry/test_calibration.py rename to test_kornia/geometry/test_calibration.py diff --git a/kornia/geometry/test_camera.py b/test_kornia/geometry/test_camera.py similarity index 100% rename from kornia/geometry/test_camera.py rename to test_kornia/geometry/test_camera.py diff --git a/kornia/geometry/test_conversions.py b/test_kornia/geometry/test_conversions.py similarity index 100% rename from kornia/geometry/test_conversions.py rename to test_kornia/geometry/test_conversions.py diff --git a/kornia/geometry/test_depth.py b/test_kornia/geometry/test_depth.py similarity index 100% rename from kornia/geometry/test_depth.py rename to test_kornia/geometry/test_depth.py diff --git a/kornia/geometry/test_epipolar.py b/test_kornia/geometry/test_epipolar.py similarity index 100% rename from kornia/geometry/test_epipolar.py rename to test_kornia/geometry/test_epipolar.py diff --git a/kornia/geometry/test_homography.py b/test_kornia/geometry/test_homography.py similarity index 100% rename from kornia/geometry/test_homography.py rename to test_kornia/geometry/test_homography.py diff --git a/kornia/geometry/test_keypoints.py b/test_kornia/geometry/test_keypoints.py similarity index 100% rename from kornia/geometry/test_keypoints.py rename to test_kornia/geometry/test_keypoints.py diff --git a/kornia/geometry/test_liegroup.py b/test_kornia/geometry/test_liegroup.py similarity index 100% rename from kornia/geometry/test_liegroup.py rename to test_kornia/geometry/test_liegroup.py diff --git a/kornia/geometry/test_linalg.py b/test_kornia/geometry/test_linalg.py similarity index 100% rename from kornia/geometry/test_linalg.py rename to test_kornia/geometry/test_linalg.py diff --git a/kornia/geometry/test_line.py b/test_kornia/geometry/test_line.py similarity index 100% rename from kornia/geometry/test_line.py rename to test_kornia/geometry/test_line.py diff --git a/kornia/geometry/test_quaternion.py b/test_kornia/geometry/test_quaternion.py similarity index 100% rename from kornia/geometry/test_quaternion.py rename to test_kornia/geometry/test_quaternion.py diff --git a/kornia/geometry/test_ransac.py b/test_kornia/geometry/test_ransac.py similarity index 100% rename from kornia/geometry/test_ransac.py rename to test_kornia/geometry/test_ransac.py diff --git a/kornia/geometry/test_solvers.py b/test_kornia/geometry/test_solvers.py similarity index 100% rename from kornia/geometry/test_solvers.py rename to test_kornia/geometry/test_solvers.py diff --git a/kornia/geometry/test_subpix.py b/test_kornia/geometry/test_subpix.py similarity index 100% rename from kornia/geometry/test_subpix.py rename to test_kornia/geometry/test_subpix.py diff --git a/kornia/geometry/test_transform.py b/test_kornia/geometry/test_transform.py similarity index 100% rename from kornia/geometry/test_transform.py rename to test_kornia/geometry/test_transform.py diff --git a/kornia/geometry/test_vector.py b/test_kornia/geometry/test_vector.py similarity index 100% rename from kornia/geometry/test_vector.py rename to test_kornia/geometry/test_vector.py diff --git a/kornia/test_color.py b/test_kornia/test_color.py similarity index 100% rename from kornia/test_color.py rename to test_kornia/test_color.py diff --git a/kornia/test_contrib.py b/test_kornia/test_contrib.py similarity index 100% rename from kornia/test_contrib.py rename to test_kornia/test_contrib.py diff --git a/kornia/test_enhance.py b/test_kornia/test_enhance.py similarity index 100% rename from kornia/test_enhance.py rename to test_kornia/test_enhance.py diff --git a/kornia/test_feature1.py b/test_kornia/test_feature1.py similarity index 100% rename from kornia/test_feature1.py rename to test_kornia/test_feature1.py diff --git a/kornia/test_feature2.py b/test_kornia/test_feature2.py similarity index 100% rename from kornia/test_feature2.py rename to test_kornia/test_feature2.py diff --git a/kornia/test_feature3.py b/test_kornia/test_feature3.py similarity index 100% rename from kornia/test_feature3.py rename to test_kornia/test_feature3.py diff --git a/kornia/test_feature4.py b/test_kornia/test_feature4.py similarity index 100% rename from kornia/test_feature4.py rename to test_kornia/test_feature4.py diff --git a/kornia/test_feature5.py b/test_kornia/test_feature5.py similarity index 100% rename from kornia/test_feature5.py rename to test_kornia/test_feature5.py diff --git a/kornia/test_filters.py b/test_kornia/test_filters.py similarity index 100% rename from kornia/test_filters.py rename to test_kornia/test_filters.py diff --git a/kornia/test_image.py b/test_kornia/test_image.py similarity index 100% rename from kornia/test_image.py rename to test_kornia/test_image.py diff --git a/kornia/test_io.py b/test_kornia/test_io.py similarity index 100% rename from kornia/test_io.py rename to test_kornia/test_io.py diff --git a/kornia/test_losses.py b/test_kornia/test_losses.py similarity index 100% rename from kornia/test_losses.py rename to test_kornia/test_losses.py diff --git a/kornia/test_metrics.py b/test_kornia/test_metrics.py similarity index 100% rename from kornia/test_metrics.py rename to test_kornia/test_metrics.py diff --git a/kornia/test_morphology.py b/test_kornia/test_morphology.py similarity index 100% rename from kornia/test_morphology.py rename to test_kornia/test_morphology.py diff --git a/kornia/test_nerf.py b/test_kornia/test_nerf.py similarity index 100% rename from kornia/test_nerf.py rename to test_kornia/test_nerf.py diff --git a/kornia/test_sensors.py b/test_kornia/test_sensors.py similarity index 100% rename from kornia/test_sensors.py rename to test_kornia/test_sensors.py diff --git a/kornia/test_tracking.py b/test_kornia/test_tracking.py similarity index 100% rename from kornia/test_tracking.py rename to test_kornia/test_tracking.py diff --git a/kornia/test_utils.py b/test_kornia/test_utils.py similarity index 100% rename from kornia/test_utils.py rename to test_kornia/test_utils.py diff --git a/kornia/test_x.py b/test_kornia/test_x.py similarity index 100% rename from kornia/test_x.py rename to test_kornia/test_x.py