We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2999118 commit b507dcaCopy full SHA for b507dca
1 file changed
.github/workflows/test.yml …orkflows/test_remote_no_dependencies.yml.github/workflows/test.yml renamed to .github/workflows/test_remote_no_dependencies.yml
@@ -1,4 +1,5 @@
1
-name: Test Pypi package
+name: "Test remote API"
2
+description: "Test remote API at https://api.harmonydata.ac.uk. Github actions does not host a running API so we cannot test locally."
3
4
on:
5
push:
@@ -29,9 +30,11 @@ jobs:
29
30
- name: Install dependencies
31
run: |
32
python -m pip install --upgrade pip
- pip install -r requirements.txt
33
- - name: Delete unwanted tests
34
- run: rm tests/*selenium* tests/*local*
+ pip install pytest requests
+ - name: Delete unwanted tests (1)
35
+ run: tests/*local*
36
+ - name: Delete unwanted tests (2)
37
+ run: rm tests/*selenium*
38
- name: Test with pytest
39
40
pip install pytest
0 commit comments