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

WIP: V0.2 dev #11

Merged
merged 37 commits into from
Mar 8, 2024
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
43b1d7d
cleanup and kwargs overwrite
sbromberger Feb 13, 2024
f556238
bump version in pyproject
sbromberger Feb 13, 2024
fb2b127
fix some circular imports
sbromberger Feb 13, 2024
e6f0523
linting
sbromberger Feb 13, 2024
c0a49db
testing branch
sbromberger Feb 14, 2024
14a770f
build backend
sbromberger Feb 14, 2024
dede984
first tests
sbromberger Feb 14, 2024
c60a475
add tests to CI
sbromberger Feb 14, 2024
1be3854
abstract execution to execution.py, use in both clippy and ooclippy
sbromberger Feb 15, 2024
8ac9991
more tests
sbromberger Feb 15, 2024
655a9ac
fix tests
sbromberger Feb 15, 2024
cf62b0b
add tests, fixed return to use returns_key
sbromberger Feb 15, 2024
73c165b
pass by reference
sbromberger Feb 15, 2024
b5b5d02
add logger to ooclippy
sbromberger Feb 16, 2024
b9e9594
bugfix in oo
sbromberger Feb 16, 2024
eeaceeb
versions and updated pyproject
sbromberger Feb 22, 2024
0dc3424
rethinking how we do things for the backend class creation
sbromberger Feb 24, 2024
94fd278
abstraction of backends
sbromberger Feb 24, 2024
c2dd456
readme and logging
sbromberger Feb 26, 2024
f3f193f
initial selectors - some rewrite required
sbromberger Feb 27, 2024
ad7210d
simplified selectors
sbromberger Feb 27, 2024
e8901ca
fixing bug and adding tests
sbromberger Mar 1, 2024
0dfd3a3
flat_dict_to_nested
sbromberger Mar 1, 2024
2785652
subselector tests and moving things to constants
sbromberger Mar 1, 2024
4884fec
testing
sbromberger Mar 2, 2024
af1e3c2
new config
sbromberger Mar 2, 2024
90e3faa
add _cfg to clippy classes
sbromberger Mar 3, 2024
66d47e9
logging to debug
sbromberger Mar 3, 2024
19a728e
add validate (default False) to _run
sbromberger Mar 3, 2024
448fc2b
refactor _run and _validate, add _help
sbromberger Mar 3, 2024
b868fe8
OUTPUT_KEY
sbromberger Mar 3, 2024
97bd2b3
Merge pull request #13 from LLNL/sbromberger/config
sbromberger Mar 3, 2024
b500249
pylint
sbromberger Mar 3, 2024
903ffd5
moved execution to fs and added lots of documentation. Simplified con…
sbromberger Mar 3, 2024
9d38d25
black formatting
sbromberger Mar 3, 2024
643e572
fixed some errors and disabled some tests
sbromberger Mar 3, 2024
3a5ce36
black formatting
sbromberger Mar 8, 2024
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
49 changes: 44 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'

@@ -24,10 +24,49 @@ jobs:
run: |
flake8 src/clippy --count --show-source --statistics --max-line-length=120

# - name: Pytest
# run: |
# coverage run --source clippy/ -m pytest && coverage report -m --fail-under 99

- name: MyPy
run: |
mypy src/clippy --ignore-missing-imports

- name: Install Boost
uses: MarkusJx/[email protected]
id: install-boost
with:
# REQUIRED: Specify the required boost version
# A list of supported versions can be found here:
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json
boost_version: 1.83.0
# OPTIONAL: Specify a platform version
# platform_version: 18.04
# OPTIONAL: Specify a custom install location
boost_install_dir: /home/runner/work/boost
# OPTIONAL: Specify a toolset
toolset: gcc
# OPTIONAL: Specify an architecture
# arch: x86

- name: Build backend
id: build-backend
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
run: |
echo BOOST_ROOT is $BOOST_ROOT /end/
sudo apt install doxygen
TMPDIR=$(mktemp -d)
git clone https://github.com/LLNL/clippy-cpp --branch $GITHUB_HEAD_REF $TMPDIR
mkdir -p $TMPDIR/build
cd $TMPDIR/build && cmake -DBOOST_ROOT=$BOOST_ROOT .. && make
ls -l $TMPDIR/build/test
BACKEND=$TMPDIR/build/test
echo "BACKEND=$BACKEND" >> $GITHUB_ENV

- name: Pytest
env:
CLIPPY_BACKEND_PATH: ${{ env.BACKEND }}
run: |
echo "backend = $BACKEND"
pytest .
# - name: Pytest
# run: |
# coverage run --source clippy/ -m pytest && coverage report -m --fail-under 99
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,3 +6,4 @@ build
setup.cfg
.vscode
*.egg-info
.coverage
Loading