Skip to content

Commit

Permalink
[CI] Change .[testing] to .[test], to match pyproject.toml changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
duckinator committed Nov 9, 2023
1 parent fe53c49 commit f1b57d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Lint_task:
container:
image: python:3-slim
install_script:
- pip3 install -U .[testing]
- pip3 install -U .[test]
script:
- pylint --version
- bork run lint
Expand All @@ -26,7 +26,7 @@ Linux_task:
- image: python:3.10-slim
- image: python:3.11-slim
install_script:
- pip3 install -U .[testing]
- pip3 install -U .[test]
script:
- python3 --version
- pytest --verbose
Expand All @@ -37,7 +37,7 @@ macOS_task:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
install_script:
- brew install python3
- pip3 install -U .[testing]
- pip3 install -U .[test]
script:
- python3 --version
- pytest --verbose
Expand Down Expand Up @@ -77,7 +77,7 @@ Windows_task:
- ps: Invoke-WebRequest -Uri https://www.python.org/ftp/python/${env:PYTHON}/python-${env:PYTHON}-amd64.exe -OutFile C:\python-installer.exe
- C:\python-installer.exe /quiet TargetDir=C:\Python SimpleInstall=1
install_script:
- C:\Python\python.exe -m pip install -e .[testing]
- C:\Python\python.exe -m pip install -e .[test]
version_info_script:
- C:\Python\python.exe --version
- C:\Python\python.exe -m pip --version
Expand Down Expand Up @@ -110,7 +110,7 @@ Release_task:
install_script:
- apt-get update
- apt-get install -y git
- pip3 install . .[testing]
- pip3 install . .[test]
build_script:
- bork clean
- bork build
Expand Down

0 comments on commit f1b57d6

Please sign in to comment.