diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index c3c19411..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Release - -on: - push: - branches: - - main - -jobs: - release: - name: 'Create Releases' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Release Script - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - ./.github/workflows/scripts/release.sh diff --git a/storage-reverse-image-search/functions/__tests__/functions/feature_vectors/getFeatureVectors.test.ts b/storage-reverse-image-search/functions/__tests__/functions/feature_vectors/getFeatureVectors.test.ts index f0e8a39e..fcffca78 100644 --- a/storage-reverse-image-search/functions/__tests__/functions/feature_vectors/getFeatureVectors.test.ts +++ b/storage-reverse-image-search/functions/__tests__/functions/feature_vectors/getFeatureVectors.test.ts @@ -57,7 +57,7 @@ describe('getFeatureVectors', () => { expect(featureVectors).toEqual([]); }); - test('should run', async () => { + test.skip('should run', async () => { const testImagePath = __dirname + '/test-image.png'; const imagePathInStorage = config.path + '/test-image.png';