Skip to content

Commit

Permalink
Upgrade ruby & python in dev.yml. Upgrade Python versions for tox tes…
Browse files Browse the repository at this point in the history
…ting in Github workflows and make it start with act -j python_tests
  • Loading branch information
Sergey Panfilov committed May 26, 2023
1 parent 6e8be89 commit a10c4c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install Python 2.7, 3.6, 3.7
- name: Install Python 3.7, 3.8, 3.9, 3.10, 3.11
run: |
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt-get -qq update
sudo apt-get install -y python2.7 python3.6 python3.7
sudo apt-get install -y python3.7 python3.8 python3.9 python3.10 python3.11 python3-pip ruby
sudo pip install autopep8
- name: Run Python tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lint:
autolint: autopep8 lint

run_tests: clean
tox -e py27,py36,py37 -- --durations=10 -vv tests
tox -e py37,py38,py39,py310,py311 -- --durations=10 -vv tests

test: autopep8 run_tests

Expand Down
2 changes: 1 addition & 1 deletion python/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: ci-queue

up:
- python: 2.7.11
- python: 3.10.11
- custom:
name: "link development ci-queue as a package"
met?: "pip show ciqueue | grep -i \"Location: $(pwd)\""
Expand Down
2 changes: 1 addition & 1 deletion ruby/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: ci-queue

up:
- ruby: 2.6.5
- ruby: 3.2.2
- bundler
- isogun

Expand Down

0 comments on commit a10c4c5

Please sign in to comment.