Skip to content

Commit

Permalink
Replace ddev with pytest in experimental workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dkirov-dd committed Dec 20, 2024
1 parent 7eae96f commit ef6c3e0
Showing 1 changed file with 12 additions and 33 deletions.
45 changes: 12 additions & 33 deletions .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,42 +169,21 @@ jobs:
$env:OPENSSL_CONF = ".\openssl.cnf"
.\openssl.exe list -providers
- name: Add Python to PATH
- name: Add Python to PATH Windows
if: runner.os == 'Windows'
shell: powershell
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
echo "PATH=$(pwd)\python_dir;$(pwd)\python_dir\Scripts;$PATH" >> $GITHUB_ENV
else
echo "PATH=$(pwd)/python_dir:$PATH" >> $GITHUB_ENV
fi
Add-Content -Path $env:GITHUB_ENV -Value "PATH=$(pwd)\python_dir;$(pwd)\python_dir\Scripts;$env:PATH"
- name: Install pip
run: |
python -m ensurepip
- name: Restore cache
uses: actions/cache/restore@v4
with:
path: ${{ runner.os == 'Windows' && '~\AppData\Local\pip\Cache' || '~/.cache/pip' }}
key: >-
${{ format(
'v01-python-{0}-{1}-{2}-{3}',
env.pythonLocation,
hashFiles('datadog_checks_base/pyproject.toml'),
hashFiles('datadog_checks_dev/pyproject.toml'),
hashFiles('ddev/pyproject.toml')
)}}
restore-keys: |-
v01-python-${{ env.pythonLocation }}
- name: Install ddev from local folder
- name: Add Python to PATH Linux
if: runner.os == 'Linux'
run: |
python.exe -m pip install -e ./datadog_checks_dev[cli]
python.exe -m pip install -e ./ddev
echo "PATH=$(pwd)/python_dir:$PATH" >> $GITHUB_ENV
- name: Configure ddev
- name: Install pip and pytest
run: |
ddev config set repos.core .
ddev config set repo core
python -m ensurepip
pip install pytest
- name: Test
if: runner.os == 'Windows'
Expand All @@ -217,6 +196,6 @@ jobs:
$env:OPENSSL_MODULES = "$(pwd)\ossl-modules"
.\openssl.exe list -providers
.\openssl.exe md5
pytest ..\datadog_checks_base -m fips_off
pytest ..\datadog_checks_base -m fips_on
.\python.exe -m pytest ..\datadog_checks_base -m fips_off
.\python.exe -m pytest ..\datadog_checks_base -m fips_on
python -c "import ssl; ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT).set_ciphers('MD5')"

0 comments on commit ef6c3e0

Please sign in to comment.