Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update-ci-testing #193

Merged
merged 33 commits into from
Dec 3, 2023
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d381cb0
update-ci-testing
itziakos Nov 12, 2023
2bac9fb
Update test.yml
itziakos Nov 25, 2023
c4f64a6
Update test.yml
itziakos Nov 25, 2023
8acf4af
Update tox.ini
itziakos Nov 26, 2023
5ef6982
Update test.yml
itziakos Nov 26, 2023
1669eb0
Update test.yml
itziakos Nov 26, 2023
2652d4a
Update test.yml
itziakos Nov 26, 2023
9a4942c
Update test.yml
itziakos Nov 26, 2023
94768ba
continue test step on errors
itziakos Nov 26, 2023
ab2b50a
fix failing logic
itziakos Nov 26, 2023
e773695
run haas tests from their installed folder
itziakos Nov 26, 2023
0281f1d
cd to an existing directory
itziakos Nov 26, 2023
154b686
fix variable name
itziakos Nov 26, 2023
a522716
use the github action option for the working directory
itziakos Nov 26, 2023
c0171ec
fix typo
itziakos Nov 26, 2023
4f29379
Apply suggestions from code review
itziakos Nov 26, 2023
399eb77
Replace assertRegexpMatches with assertRegex
sjagoe Dec 2, 2023
93e5141
Simplify install requirements and required python versions
sjagoe Dec 2, 2023
c818821
Remove dependency on six
sjagoe Dec 2, 2023
e4d9f58
Fix unittest invocation in tests
sjagoe Dec 2, 2023
77e36c0
Don't limit testing on pull request target branch
sjagoe Dec 2, 2023
c1f39dc
Run coverage
sjagoe Dec 2, 2023
f991861
Run lint and tests in parallel
sjagoe Dec 2, 2023
d9d7e6e
Separate out test steps
sjagoe Dec 2, 2023
920d0c9
Fix python version installed
sjagoe Dec 2, 2023
cdb9045
Fix pypy versions
sjagoe Dec 2, 2023
0516fa1
Relax stevedore version for windows and python 3.7 support
sjagoe Dec 2, 2023
0591a85
Decrement pypy versions for available on github actions
sjagoe Dec 2, 2023
f54d0a3
Update github actions runners
sjagoe Dec 2, 2023
3903345
Update classifiers
sjagoe Dec 2, 2023
31cb589
Use pathlib for path resolution and relative path check
sjagoe Dec 3, 2023
1933de3
Only mock the instance of getcwd that we're interested in
sjagoe Dec 3, 2023
27b8185
Merge pull request #194 from scalative/drop-python-2
sjagoe Dec 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Run tests
continue-on-error: false
run: |
cd ci
cd .github/workflows
itziakos marked this conversation as resolved.
Show resolved Hide resolved
python -m unittest discover haas
sjagoe marked this conversation as resolved.
Show resolved Hide resolved
python -m haas haas
lint:
Expand Down
Loading