We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python setup.py install
pip install .
1 parent 1cd883a commit bce65e2Copy full SHA for bce65e2
.github/workflows/tests.yml
@@ -28,14 +28,13 @@ jobs:
28
# Display the Python version being used
29
- name: Display Python version
30
run: python -c "import sys; print(sys.version)"
31
- # Install the package using the setup.py
32
- - name: Install package
33
- run: python setup.py install
34
# Install pytest (you can use some other testing utility)
35
- name: Install deps
36
run: |
37
python -m pip install --upgrade pip
38
pip install -r requirements.txt -r test-requirements.txt
39
# Run the tests. I'm using pytest and the file is in the tests directory.
+ - name: Install package
+ run: pip install .
40
- name: Run tests
41
run: pytest requests_unixsocket/tests
0 commit comments