Skip to content

πŸ“ Update local-setup-ui.md #36

πŸ“ Update local-setup-ui.md

πŸ“ Update local-setup-ui.md #36

Workflow file for this run

name: Tests
env:
DEFAULT_PYTHON_VERSION: "3.10"
on:
pull_request:
push:
branches:
- main
# ensuring only one instance is running at a given time
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test-conda-store-server:
name: "unit-test conda-store-server"
strategy:
matrix:
os: ["ubuntu", "macos", "windows"]
include:
- os: ubuntu
environment-file: conda-store-server/environment-dev.yaml
- os: macos
environment-file: conda-store-server/environment-macos-dev.yaml
- os: windows
environment-file: conda-store-server/environment-windows-dev.yaml
runs-on: ${{ matrix.os }}-latest
defaults:
run:
shell: bash -el {0}
working-directory: conda-store-server
steps:
- name: "Checkout Repository πŸ›Ž"
uses: actions/checkout@v4
- name: "Set up env ${{ matrix.os }} 🐍"
uses: conda-incubator/setup-miniconda@v2
with:
environment-file: ${{ matrix.environment-file }}
miniforge-version: latest
# This fixes a "DLL not found" issue importing ctypes from the hatch env
- name: Reinstall Python 3.10 on Windows runner
uses: nick-fields/[email protected]
with:
timeout_minutes: 9999
max_attempts: 6
command:
conda install --channel=conda-forge --quiet --yes python=${{ matrix.python }}
if: matrix.os == 'windows'
- name: "Linting Checks 🧹"
run: |
hatch env run -e dev lint
- name: "Build package πŸ“¦"
run: |
hatch build
- name: "Unit tests βœ…"
run: |
pytest -m "not extended_prefix" tests
# https://github.com/actions/runner-images/issues/1052
- name: "Windows extended prefix unit tests βœ…"
shell: pwsh
run: |
Set-ItemProperty "HKLM:\System\CurrentControlSet\Control\FileSystem" `
-Name "LongPathsEnabled" `
-Value 0 `
-Type DWord
(Get-ItemProperty "HKLM:System\CurrentControlSet\Control\FileSystem").LongPathsEnabled
pytest -m "extended_prefix" tests
if: matrix.os == 'windows'
integration-test-conda-store-server:
name: "integration-test conda-store-server"
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
working-directory: conda-store-server
steps:
- name: "Checkout Repository πŸ›Ž"
uses: actions/checkout@v4
- name: "Set up env 🐍"
uses: conda-incubator/setup-miniconda@v2
with:
environment-file: conda-store-server/environment-dev.yaml
miniforge-version: latest
- name: "Install build dependencies πŸ“¦"
run: |
pip install hatch
sudo apt install wait-for-it -y
- name: "Deploy docker-compose"
run: |
docker-compose up -d
docker ps
wait-for-it localhost:5432 # postgresql
wait-for-it localhost:9000 # minio
wait-for-it localhost:8080 # conda-store-server
- name: "Run Playwright tests 🎭"
run: |
playwright install
pytest --video on ../tests/test_playwright.py
- name: "Upload test results πŸ“€"
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: playwright-tests
path: conda-store-server/test-results
- name: "Run integration tests βœ…"
run: |
export PYTHONPATH=$PYTHONPATH:$PWD
pytest ../tests/test_api.py ../tests/test_metrics.py
- name: "Get Docker logs πŸ”"
if: ${{ failure() }}
run: |
docker-compose logs
test-conda-store:
name: "integration-test conda-store"
runs-on: ubuntu-latest
defaults:
run:
working-directory: conda-store
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: "Checkout Repository πŸ›Ž"
uses: actions/checkout@v4
- name: "Set up Python 🐍"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: "Install Dependencies πŸ“¦"
run: |
pip install hatch
sudo apt install wait-for-it -y
- name: "Linting Checks 🧹"
run: |
hatch env run -e dev lint
- name: "Build package πŸ“¦"
run: |
hatch build
- name: "Deploy docker-compose"
run: |
docker-compose up -d
docker ps
wait-for-it localhost:5432 # postgresql
wait-for-it localhost:9000 # minio
wait-for-it localhost:8080 # conda-store-server
- name: "Install conda-store for tests πŸ“¦"
run: |
pip install .
- name: "Run basic tests - not authenticated"
run: |
sleep 20
./tests/unauthenticated-tests.sh
- name: "Run basic tests - authenticated"
run: |
./tests/authenticated-tests.sh
- name: "Test shebang"
run: |
export CONDA_STORE_URL=http://localhost:8080/conda-store
export CONDA_STORE_AUTH=basic
export CONDA_STORE_USERNAME=username
export CONDA_STORE_PASSWORD=password
./tests/shebang.sh
- name: "Get Docker logs πŸ”"
if: ${{ failure() }}
run: |
docker-compose logs
build-docker-image:
name: "Build docker images"
runs-on: ubuntu-latest
strategy:
matrix:
docker-image:
- conda-store
- conda-store-server
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Lint Dockerfiles
uses: jbergstroem/hadolint-gh-action@v1
with:
dockerfile: ${{ matrix.docker-image }}/Dockerfile
output_format: tty
error_level: 0
- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
quansight/${{ matrix.docker-image }}
tags: |
type=sha
- name: Build docker
uses: docker/build-push-action@v5
with:
context: "${{ matrix.docker-image }}"
file: "${{ matrix.docker-image }}/Dockerfile"
tags: |
${{ steps.meta.outputs.tags }}
target: "dev"
push: false
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max