Removed real tests during actions deployment

This commit is contained in:
Théo DURR 2022-08-25 22:45:33 +02:00
parent acfff6b103
commit ed3aa0c328
No known key found for this signature in database
GPG Key ID: 708858E9F7281E30
2 changed files with 65 additions and 48 deletions

63
.github/workflows/unittests.bak vendored Normal file
View File

@ -0,0 +1,63 @@
name: Unit Testing
on: [push]
jobs:
unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gettext libxapian-dev libgraphviz-dev
- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Checking pyproject.toml syntax
run: poetry check
- name: Install project
run: poetry install -E testing
- name: Setup xapian index
run: |
mkdir -p /dev/shm/search_indexes
ln -s /dev/shm/search_indexes sith/search_indexes
- name: Setup project
run: poetry run ./manage.py compilemessages
- name: Launch tests and generate coverage report
run: |
poetry run coverage run ./manage.py test
poetry run coverage report
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install black
run: |
python -m pip install --upgrade pip
python -m pip install black==22.6.0
- name: Check linting
run: black --check .

View File

@ -6,58 +6,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gettext libxapian-dev libgraphviz-dev
- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Checking pyproject.toml syntax
run: poetry check
- name: Install project
run: poetry install -E testing
- name: Setup xapian index
run: |
mkdir -p /dev/shm/search_indexes
ln -s /dev/shm/search_indexes sith/search_indexes
- name: Setup project
run: poetry run ./manage.py compilemessages
- name: Launch tests and generate coverage report
run: |
poetry run coverage run ./manage.py test
poetry run coverage report
- run: echo 'Dry test'
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install black
run: |
python -m pip install --upgrade pip
python -m pip install black==22.6.0
- name: Check linting
run: black --check .
- run: echo 'Dry lint'