Skip to content

Commit

Permalink
Install pyenv via pip
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuchenia committed Nov 1, 2023
1 parent 5835fc8 commit 75a8578
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .gitea/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python 3.11
run: apt-get update && apt-get install -y pyenv
run: pip3 install --upgrade pip
run: pip3 install pyenv
- name: Display Python version
run: python3 -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
run: pip3 install -r requirements.txt
- name: Run tests
run: pytest --no-header -v --junit-xml results.xml

0 comments on commit 75a8578

Please sign in to comment.