Skip to content

Commit 065e4b1

Browse files
committed
Dummy commit to test CI
1 parent 8b07033 commit 065e4b1

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ jobs:
5454
sudo pip install autopep8
5555
- name: Run Python tests
5656
run: |
57+
which python
58+
python3 -m venv myenv
59+
source myenv/bin/activate
60+
which python3
61+
echo PATH=$PATH >> $GITHUB_ENV
5762
bin/before-install
5863
bin/test
5964
env:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
# test
12
# CI::Queue
23

34
[![Gem Version](https://badge.fury.io/rb/ci-queue.svg)](https://rubygems.org/gems/ci-queue)
45
[![Tests](https://github.com/Shopify/ci-queue/workflows/Tests/badge.svg?branch=master)](https://github.com/Shopify/ci-queue/actions?query=workflow%3ATests)
56

6-
Distribute tests over many workers using a queue.
7+
Distribute tests over many workers using a queue.
78

89
## Why a queue?
910

@@ -48,4 +49,3 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/Shopif
4849
## License
4950

5051
The code is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
51-

bin/before-install

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ end
1010
case ENV['SUITE']
1111
when 'python'
1212
Dir.chdir('python/') do
13-
run('sudo', 'pip', 'install', '-U', 'pip')
14-
run('sudo', 'pip', 'install', 'setuptools==68.0.0')
15-
run('pip', '--version')
13+
run('python3', '-m', 'pip', '--version')
14+
run('python3', '-m', 'pip', 'install', '-U', 'pip')
15+
run('python3', '-m', 'pip', 'install', 'setuptools==68.0.0')
16+
run('python3', '-m', 'pip', '--version')
1617
run('sudo', 'make', 'install')
1718
end
1819
when 'ruby'

0 commit comments

Comments
 (0)