Skip to content

Fixes on Object Management, and File Upload, and Demo. #87

Fixes on Object Management, and File Upload, and Demo.

Fixes on Object Management, and File Upload, and Demo. #87

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.10] #, 3.8, 3.9, '3.10'
steps:
- name: Download and install google-chrome-stable
run: |
sudo apt update
sudo apt install -y gdebi-core wget xvfb
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo gdebi --quiet --non-interactive google-chrome-stable_current_amd64.deb
# - name: Install chomedriver
# uses: nanasess/setup-chromedriver@v1
- name: Setup geckodriver
uses: browser-actions/setup-geckodriver@latest
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Add Actions checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: create X11 display
run: |
export DISPLAY=:99
chromedriver --url-base=/wd/hub &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test_requirements.txt
pip install requests
- name: Run Tests
run: |
cd demo/
python manage.py createbasejs
python manage.py loaddevstatic
python manage.py test
env:
DISPLAY: :99