Skip to content

Commit

Permalink
revert github debugging, mopac path was the problem
Browse files Browse the repository at this point in the history
  • Loading branch information
ntBre committed Dec 1, 2024
1 parent 58ca074 commit cfc4512
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
cp mopac/build/mopac mopac/build/libmopac.so /opt/mopac/.
# https://twitter.com/jonhoo/status/1571290371124260865
- name: cargo test --locked
run: cargo test --locked --all-features --all-targets -- --include-ignored --test-threads=1 --nocapture
run: cargo test --locked --all-features --all-targets -- --include-ignored
6 changes: 1 addition & 5 deletions tests/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ fn run(path: &str, other_files: &[&str]) -> std::io::Result<()> {
std::fs::copy(file, dir.path().join(filename))?;
}
let mut cmd = Command::cargo_bin("pbqff").unwrap();
let assert = cmd
.arg("pbqff.toml")
.args(["-t", "1"])
.current_dir(&dir)
.assert();
let assert = cmd.arg("pbqff.toml").current_dir(&dir).assert();
let output = assert.get_output();

assert!(
Expand Down

0 comments on commit cfc4512

Please sign in to comment.