This commit is contained in:
Gregor Martynus 2021-01-20 13:19:08 -08:00
parent 7beb13af45
commit 2cc7d517b1
2 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,8 @@ See https://github.com/semantic-release/semantic-release/blob/master/docs/suppor
process.exit(1);
}
console.log(process.env)
execa('git', ['--version'])
.then(({stdout}) => {
var gitVersion = findVersions(stdout)[0];

View File

@ -84,7 +84,7 @@ test.after.always(async () => {
await Promise.all([gitbox.stop(), npmRegistry.stop(), mockServer.stop()]);
});
test('Release patch, minor and major versions', async (t) => {
test.only('Release patch, minor and major versions', async (t) => {
const packageName = 'test-release';
const owner = 'git';
// Create a git repository, set the current working directory at the root of the repo