@@ -59,16 +59,16 @@ jobs:
5959 - name : Install Hatch
6060 run : pip install --upgrade hatch
6161
62- - name : Lint
63- if : matrix.python-version == '3.10' && runner.os == 'Linux'
64- run : hatch run fmt-check && hatch run test:types
62+ # - name: Lint
63+ # if: matrix.python-version == '3.10' && runner.os == 'Linux'
64+ # run: hatch run fmt-check && hatch run test:types
6565
66- - name : Generate docs
67- if : matrix.python-version == '3.10' && runner.os == 'Linux'
68- run : hatch run docs
66+ # - name: Generate docs
67+ # if: matrix.python-version == '3.10' && runner.os == 'Linux'
68+ # run: hatch run docs
6969
70- - name : Run unit tests
71- run : hatch run test:unit
70+ # - name: Run unit tests
71+ # run: hatch run test:unit
7272
7373 # Do not authenticate on PRs from forks and on PRs created by dependabot
7474 - name : AWS authentication
@@ -79,27 +79,26 @@ jobs:
7979 aws-region : ${{ env.AWS_REGION }}
8080 role-to-assume : ${{ secrets.AWS_CI_ROLE_ARN }}
8181
82- - name : Run integration tests
83- if : success() && steps.aws-auth.outcome == 'success'
84- run : hatch run test:cov-retry -m "integration"
82+ # - name: Run integration tests
83+ # if: success() && steps.aws-auth.outcome == 'success'
84+ # run: hatch run test:cov-retry -m "integration"
8585
86- - name : Run unit tests with lowest direct dependencies
87- run : |
88- hatch run uv pip compile pyproject.toml --resolution lowest-direct --output-file requirements_lowest_direct.txt
89- hatch -e test env run -- uv pip install -r requirements_lowest_direct.txt
90- hatch run test:unit
86+ # - name: Run unit tests with lowest direct dependencies
87+ # run: |
88+ # hatch run uv pip compile pyproject.toml --resolution lowest-direct --output-file requirements_lowest_direct.txt
89+ # hatch -e test env run -- uv pip install -r requirements_lowest_direct.txt
90+ # hatch run test:unit
9191
9292 - name : Nightly - run unit tests with Haystack main branch
93- if : github.event_name == 'schedule'
9493 run : |
9594 hatch env prune
96- hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main
97- hatch run test:unit
98-
99- - name : Send event to Datadog for nightly failures
100- if : failure() && github.event_name == 'schedule'
101- uses : ./.github/actions/send_failure
102- with :
103- title : |
104- Core integrations nightly tests failure: ${{ github.workflow }}
105- api-key : ${{ secrets.CORE_DATADOG_API_KEY }}
95+ hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@pep604
96+ hatch run test:cov-retry
97+
98+ # - name: Send event to Datadog for nightly failures
99+ # if: failure() && github.event_name == 'schedule'
100+ # uses: ./.github/actions/send_failure
101+ # with:
102+ # title: |
103+ # Core integrations nightly tests failure: ${{ github.workflow }}
104+ # api-key: ${{ secrets.CORE_DATADOG_API_KEY }}
0 commit comments