Skip to content

Commit

Permalink
Added installation of ldap dependencies to workflow and fixed copy pa…
Browse files Browse the repository at this point in the history
…ste errors.
  • Loading branch information
filiptypjeu committed Aug 6, 2023
1 parent b305d71 commit a2fe4f1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/django-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
- name: Install latest pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
run: |
sudo apt install libsasl2-dev python3-dev libldap2-dev libssl-dev
pip install -r requirements.txt
- name: Apply migrations
run: python teknologr/manage.py migrate
run: python fars/manage.py migrate
- name: Run tests
run: python teknologr/manage.py test teknologr
run: python fars/manage.py test fars

0 comments on commit a2fe4f1

Please sign in to comment.