-
Notifications
You must be signed in to change notification settings - Fork 23
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
Only process #653
base: main
Are you sure you want to change the base?
Only process #653
Conversation
arc/plotter.py
Outdated
plt.savefig(image_path, bbox_inches='tight') | ||
try: | ||
plt.savefig(image_path, bbox_inches='tight') | ||
except FileNotFoundError: |
Check notice
Code scanning / CodeQL
Empty except
functional/functional_test.py
Outdated
This module that contains functional tests for ARC | ||
""" | ||
|
||
from encodings import utf_8 |
Check notice
Code scanning / CodeQL
Unused import
functional/functional_test.py
Outdated
from encodings import utf_8 | ||
import os | ||
import shutil | ||
import subprocess |
Check notice
Code scanning / CodeQL
Unused import
arc/species/zmat.py
Outdated
@@ -36,7 +36,7 @@ | |||
|
|||
from arc.common import get_logger, is_angle_linear, key_by_val, determine_top_group_indices | |||
from arc.exceptions import ZMatError | |||
from arc.species.vectors import calculate_distance, calculate_angle, calculate_dihedral_angle, get_vector_length | |||
from arc.species.vectors import calculate_param, get_vector_length |
Check failure
Code scanning / CodeQL
Module-level cyclic import
arc/species/zmat.py
Outdated
@@ -36,7 +36,7 @@ | |||
|
|||
from arc.common import get_logger, is_angle_linear, key_by_val, determine_top_group_indices | |||
from arc.exceptions import ZMatError | |||
from arc.species.vectors import calculate_distance, calculate_angle, calculate_dihedral_angle, get_vector_length | |||
from arc.species.vectors import calculate_param, get_vector_length |
Check failure
Code scanning / CodeQL
Module-level cyclic import
arc/job/adapters/ts/kinbot_test.py
Outdated
""" | ||
|
||
import os | ||
import pytest |
Check notice
Code scanning / CodeQL
Unused import
71aac32
to
bbb4649
Compare
Codecov Report
@@ Coverage Diff @@
## main #653 +/- ##
=======================================
Coverage 73.20% 73.21%
=======================================
Files 99 99
Lines 26359 26370 +11
Branches 5513 5516 +3
=======================================
+ Hits 19297 19306 +9
- Misses 5693 5694 +1
- Partials 1369 1370 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
We'd like ARC to immediately process thermo/kinetics after all relevant jobs have ended.
This PR takes us one small step closer to this goal, adding an
only_process
arg to the input (restart) file, to request ARC to only process what it can and not spawn new jobs in this restart mode whenonly_process
isTrue
.Also, save the species adjlist if given. Some species are not read correctly in RMG (especially hyperventilate N and S containing species), which results in excluding them from the final thermo library. Here we use the user-provided adjlist (which is the best way to define these species) if given.